| tag | line | file | source code |
| ptype | 15 | include/net/arp.h | extern void arp_send(int type, int ptype, u32 dest_ip, |
| ptype | 1262 | 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 | 1351 | net/ax25/af_ax25.c | ip_rcv(skb, dev, ptype); /* Note ptype here is the wrong one, fix me later */ |
| ptype | 1356 | net/ax25/af_ax25.c | arp_rcv(skb, dev, ptype); /* Note ptype here is wrong... */ |
| ptype | 1498 | net/ax25/af_ax25.c | static int kiss_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype) |
| ptype | 1509 | net/ax25/af_ax25.c | return ax25_rcv(skb, dev, (ax25_address *)dev->dev_addr, ptype); |
| ptype | 1515 | net/ax25/af_ax25.c | static int bpq_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype) |
| ptype | 1532 | net/ax25/af_ax25.c | return ax25_rcv(skb, dev, &port_call, ptype); |
| ptype | 316 | net/core/dev.c | struct packet_type *ptype; |
| ptype | 373 | net/core/dev.c | for (ptype = ptype_all; ptype!=NULL; ptype = ptype->next) |
| ptype | 378 | net/core/dev.c | if ((ptype->dev == dev || !ptype->dev) && |
| ptype | 379 | net/core/dev.c | ((struct sock *)ptype->data != skb->sk)) |
| ptype | 386 | net/core/dev.c | ptype->func(skb2, skb->dev, ptype); |
| ptype | 604 | net/core/dev.c | struct packet_type *ptype; |
| ptype | 666 | net/core/dev.c | for (ptype = ptype_all; ptype!=NULL; ptype=ptype->next) |
| ptype | 674 | net/core/dev.c | pt_prev=ptype; |
| ptype | 677 | net/core/dev.c | for (ptype = ptype_base[ntohs(type)&15]; ptype != NULL; ptype = ptype->next) |
| ptype | 679 | net/core/dev.c | if (ptype->type == type && (!ptype->dev || ptype->dev==skb->dev)) |
| ptype | 700 | net/core/dev.c | pt_prev=ptype; |
| ptype | 310 | net/ipv4/arp.c | void arp_send(int type, int ptype, u32 dest_ip, |
| ptype | 346 | net/ipv4/arp.c | dev->hard_header(skb,dev,ptype,dest_hw?dest_hw:dev->broadcast,src_hw?src_hw:NULL,skb->len); |