Lines Matching refs:inp
124 msg->msg.inp.input_fn(msg->msg.inp.p, msg->msg.inp.netif); in tcpip_thread()
169 tcpip_inpkt(struct pbuf *p, struct netif *inp, netif_input_fn input_fn) in tcpip_inpkt() argument
173 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_inpkt: PACKET %p/%p\n", (void *)p, (void *)inp)); in tcpip_inpkt()
175 ret = input_fn(p, inp); in tcpip_inpkt()
189 msg->msg.inp.p = p; in tcpip_inpkt()
190 msg->msg.inp.netif = inp; in tcpip_inpkt()
191 msg->msg.inp.input_fn = input_fn; in tcpip_inpkt()
212 tcpip_input(struct pbuf *p, struct netif *inp) in tcpip_input() argument
215 if (inp->flags & (NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET)) { in tcpip_input()
216 return tcpip_inpkt(p, inp, ethernet_input); in tcpip_input()
219 return tcpip_inpkt(p, inp, ip_input); in tcpip_input()