taglinefilesource code
ptype15include/net/arp.hextern void     arp_send(int type, int ptype, u32 dest_ip, 
ptype1262net/ax25/af_ax25.cstatic int ax25_rcv(struct sk_buff *skb, struct device *dev, ax25_address *dev_addr, struct packet_type *ptype)
ptype1351net/ax25/af_ax25.cip_rcv(skb, dev, ptype);  /* Note ptype here is the wrong one, fix me later */
ptype1356net/ax25/af_ax25.carp_rcv(skb, dev, ptype);  /* Note ptype here is wrong... */
ptype1498net/ax25/af_ax25.cstatic int kiss_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype)
ptype1509net/ax25/af_ax25.creturn ax25_rcv(skb, dev, (ax25_address *)dev->dev_addr, ptype);
ptype1515net/ax25/af_ax25.cstatic int bpq_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype)
ptype1532net/ax25/af_ax25.creturn ax25_rcv(skb, dev, &port_call, ptype);
ptype315net/core/dev.cstruct packet_type *ptype;
ptype372net/core/dev.cfor (ptype = ptype_all; ptype!=NULL; ptype = ptype->next) 
ptype377net/core/dev.cif ((ptype->dev == dev || !ptype->dev) &&
ptype378net/core/dev.c((struct sock *)ptype->data != skb->sk))
ptype385net/core/dev.cptype->func(skb2, skb->dev, ptype);
ptype603net/core/dev.cstruct packet_type *ptype;
ptype665net/core/dev.cfor (ptype = ptype_all; ptype!=NULL; ptype=ptype->next)
ptype673net/core/dev.cpt_prev=ptype;
ptype676net/core/dev.cfor (ptype = ptype_base[ntohs(type)&15]; ptype != NULL; ptype = ptype->next) 
ptype678net/core/dev.cif (ptype->type == type && (!ptype->dev || ptype->dev==skb->dev))
ptype699net/core/dev.cpt_prev=ptype;
ptype310net/ipv4/arp.cvoid arp_send(int type, int ptype, u32 dest_ip, 
ptype346net/ipv4/arp.cdev->hard_header(skb,dev,ptype,dest_hw?dest_hw:dev->broadcast,src_hw?src_hw:NULL,skb->len);