Lines Matching refs:page_info
3420 struct usb_page_search page_info; local
3574 usbd_get_page(pc + n, 0, &page_info);
3576 td = (ehci_itd_t *)page_info.buffer;
3580 td->itd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_ITD);
3582 td->itd_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_ITD);
3602 usbd_get_page(pc + n, 0, &page_info);
3604 td = (ehci_sitd_t *)page_info.buffer;
3608 td->sitd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_SITD);
3610 td->sitd_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_SITD);
3630 usbd_get_page(pc + n, 0, &page_info);
3632 qtd = (ehci_qtd_t *)page_info.buffer;
3636 qtd->qtd_self = htohc32(sc, page_info.physaddr);
3638 qtd->qtd_self = htohc32(sc, (unsigned int)page_info.buffer);
3662 usbd_get_page(pc + n, 0, &page_info);
3664 qh = (ehci_qh_t *)page_info.buffer;
3668 qh->qh_self = htohc32(sc, page_info.physaddr | EHCI_LINK_QH);
3670 qh->qh_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_QH);