Home | History | Annotate | Download | only in qemu

Lines Matching refs:pvc

374     VLANClientState *vc, **pvc;
389 pvc = &vlan->first_client;
390 while (*pvc != NULL)
391 pvc = &(*pvc)->next;
392 *pvc = vc;
398 VLANClientState **pvc = &vc->vlan->first_client;
400 while (*pvc != NULL)
401 if (*pvc == vc) {
402 *pvc = vc->next;
411 pvc = &(*pvc)->next;
416 VLANClientState **pvc = &vlan->first_client;
418 while (*pvc != NULL)
419 if ((*pvc)->opaque == opaque)
420 return *pvc;
422 pvc = &(*pvc)->next;