Home | History | Annotate | Download | only in net

Lines Matching refs:pvc

349     VLANClientState *vc, **pvc;
364 pvc = &vlan->first_client;
365 while (*pvc != NULL)
366 pvc = &(*pvc)->next;
367 *pvc = vc;
373 VLANClientState **pvc = &vc->vlan->first_client;
375 while (*pvc != NULL)
376 if (*pvc == vc) {
377 *pvc = vc->next;
386 pvc = &(*pvc)->next;
391 VLANClientState **pvc = &vlan->first_client;
393 while (*pvc != NULL)
394 if ((*pvc)->opaque == opaque)
395 return *pvc;
397 pvc = &(*pvc)->next;