Lines Matching refs:priv
2233 - struct loopif_private *priv = (struct loopif_private*)netif->state;
2235 - LWIP_ERROR("priv != NULL", (priv != NULL), return;);
2240 - in = priv->first;
2248 - if(in_end == priv->last) {
2250 - priv->first = priv->last = NULL;
2253 - priv->first = in_end->next;
2254 - LWIP_ASSERT("should not be null since first != last!", priv->first != NULL);
2261 - /* De-queue the pbuf from its successors on the 'priv' list. */
2272 - } while(priv->first != NULL);
2296 - struct loopif_private *priv;
2328 - priv = (struct loopif_private*)netif->state;
2333 - if(priv->first != NULL) {
2334 - LWIP_ASSERT("if first != NULL, last must also be != NULL", priv->last != NULL);
2335 - priv->last->next = r;
2336 - priv->last = last;
2338 - priv->first = r;
2339 - priv->last = last;
2355 - struct loopif_private *priv;
2357 - priv = (struct loopif_private*)mem_malloc(sizeof(struct loopif_private));
2358 - if(priv == NULL)
2360 - priv->first = priv->last = NULL;
2361 - netif->state = priv;