Home | History | Annotate | Download | only in net

Lines Matching refs:pvc

341     VLANClientState *vc, **pvc;
356 pvc = &vlan->first_client;
357 while (*pvc != NULL)
358 pvc = &(*pvc)->next;
359 *pvc = vc;
365 VLANClientState **pvc = &vc->vlan->first_client;
367 while (*pvc != NULL)
368 if (*pvc == vc) {
369 *pvc = vc->next;
378 pvc = &(*pvc)->next;
383 VLANClientState **pvc = &vlan->first_client;
385 while (*pvc != NULL)
386 if ((*pvc)->opaque == opaque)
387 return *pvc;
389 pvc = &(*pvc)->next;