Home | History | Annotate | Download | only in usb

Lines Matching refs:frame_list

1916 	    (uintptr_t)itd, (uintptr_t)itd->frame_list.next,
1917 (uintptr_t)itd->frame_list.prev, 0);
2328 struct ehci_soft_itd *prev = itd->frame_list.prev;
2332 sc->sc_softitds[itd->slot] = itd->frame_list.next;
2339 if (itd->frame_list.next != NULL)
2340 itd->frame_list.next->frame_list.prev = NULL;
2348 prev->frame_list.next = itd->frame_list.next;
2349 if (itd->frame_list.next != NULL)
2350 itd->frame_list.next->frame_list.prev = prev;
2376 struct ehci_soft_sitd *prev = sitd->frame_list.prev;
2380 sc->sc_softsitds[sitd->slot] = sitd->frame_list.next;
2387 if (sitd->frame_list.next != NULL)
2388 sitd->frame_list.next->frame_list.prev = NULL;
2396 prev->frame_list.next = sitd->frame_list.next;
2397 if (sitd->frame_list.next != NULL)
2398 sitd->frame_list.next->frame_list.prev = prev;
3289 itd->frame_list.next = NULL;
3290 itd->frame_list.prev = NULL;
3350 sitd->frame_list.next = NULL;
3351 sitd->frame_list.prev = NULL;
4598 sitd->frame_list.next = sc->sc_softsitds[frindex];
4600 if (sitd->frame_list.next != NULL)
4601 sitd->frame_list.next->frame_list.prev = sitd;
4603 sitd->frame_list.prev = NULL;
4981 itd->frame_list.next = sc->sc_softitds[frindex];
4983 if (itd->frame_list.next != NULL)
4984 itd->frame_list.next->frame_list.prev = itd;
4986 itd->frame_list.prev = NULL;