tag | line | file | source code |
ptype | 15 | include/net/arp.h | extern void arp_send(int type, int ptype, u32 dest_ip, |
ptype | 1338 | net/ax25/af_ax25.c | static int ax25_rcv(struct sk_buff *skb, struct device *dev, ax25_address *dev_addr, struct packet_type *ptype) |
ptype | 1432 | net/ax25/af_ax25.c | ip_rcv(skb, dev, ptype); /* Note ptype here is the wrong one, fix me later */ |
ptype | 1437 | net/ax25/af_ax25.c | arp_rcv(skb, dev, ptype); /* Note ptype here is wrong... */ |
ptype | 1599 | net/ax25/af_ax25.c | static int kiss_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype) |
ptype | 1610 | net/ax25/af_ax25.c | return ax25_rcv(skb, dev, (ax25_address *)dev->dev_addr, ptype); |
ptype | 1616 | net/ax25/af_ax25.c | static int bpq_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype) |
ptype | 1633 | net/ax25/af_ax25.c | return ax25_rcv(skb, dev, &port_call, ptype); |
ptype | 327 | net/core/dev.c | struct packet_type *ptype; |
ptype | 384 | net/core/dev.c | for (ptype = ptype_all; ptype!=NULL; ptype = ptype->next) |
ptype | 389 | net/core/dev.c | if ((ptype->dev == dev || !ptype->dev) && |
ptype | 390 | net/core/dev.c | ((struct sock *)ptype->data != skb->sk)) |
ptype | 397 | net/core/dev.c | ptype->func(skb2, skb->dev, ptype); |
ptype | 615 | net/core/dev.c | struct packet_type *ptype; |
ptype | 677 | net/core/dev.c | for (ptype = ptype_all; ptype!=NULL; ptype=ptype->next) |
ptype | 685 | net/core/dev.c | pt_prev=ptype; |
ptype | 688 | net/core/dev.c | for (ptype = ptype_base[ntohs(type)&15]; ptype != NULL; ptype = ptype->next) |
ptype | 690 | net/core/dev.c | if (ptype->type == type && (!ptype->dev || ptype->dev==skb->dev)) |
ptype | 711 | net/core/dev.c | pt_prev=ptype; |
ptype | 338 | net/ipv4/arp.c | void arp_send(int type, int ptype, u32 dest_ip, |
ptype | 374 | net/ipv4/arp.c | dev->hard_header(skb,dev,ptype,dest_hw?dest_hw:dev->broadcast,src_hw?src_hw:NULL,skb->len); |