taglinefilesource code
ptype15include/net/arp.hextern void     arp_send(int type, int ptype, u32 dest_ip, 
ptype1338net/ax25/af_ax25.cstatic int ax25_rcv(struct sk_buff *skb, struct device *dev, ax25_address *dev_addr, struct packet_type *ptype)
ptype1432net/ax25/af_ax25.cip_rcv(skb, dev, ptype);  /* Note ptype here is the wrong one, fix me later */
ptype1437net/ax25/af_ax25.carp_rcv(skb, dev, ptype);  /* Note ptype here is wrong... */
ptype1599net/ax25/af_ax25.cstatic int kiss_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype)
ptype1610net/ax25/af_ax25.creturn ax25_rcv(skb, dev, (ax25_address *)dev->dev_addr, ptype);
ptype1616net/ax25/af_ax25.cstatic int bpq_rcv(struct sk_buff *skb, struct device *dev, struct packet_type *ptype)
ptype1633net/ax25/af_ax25.creturn ax25_rcv(skb, dev, &port_call, ptype);
ptype327net/core/dev.cstruct packet_type *ptype;
ptype384net/core/dev.cfor (ptype = ptype_all; ptype!=NULL; ptype = ptype->next) 
ptype389net/core/dev.cif ((ptype->dev == dev || !ptype->dev) &&
ptype390net/core/dev.c((struct sock *)ptype->data != skb->sk))
ptype397net/core/dev.cptype->func(skb2, skb->dev, ptype);
ptype615net/core/dev.cstruct packet_type *ptype;
ptype677net/core/dev.cfor (ptype = ptype_all; ptype!=NULL; ptype=ptype->next)
ptype685net/core/dev.cpt_prev=ptype;
ptype688net/core/dev.cfor (ptype = ptype_base[ntohs(type)&15]; ptype != NULL; ptype = ptype->next) 
ptype690net/core/dev.cif (ptype->type == type && (!ptype->dev || ptype->dev==skb->dev))
ptype711net/core/dev.cpt_prev=ptype;
ptype338net/ipv4/arp.cvoid arp_send(int type, int ptype, u32 dest_ip, 
ptype374net/ipv4/arp.cdev->hard_header(skb,dev,ptype,dest_hw?dest_hw:dev->broadcast,src_hw?src_hw:NULL,skb->len);