Lines Matching defs:page_info
3419 struct usb_page_search page_info;
3573 usbd_get_page(pc + n, 0, &page_info);
3575 td = (ehci_itd_t *)page_info.buffer;
3579 td->itd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_ITD);
3581 td->itd_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_ITD);
3601 usbd_get_page(pc + n, 0, &page_info);
3603 td = (ehci_sitd_t *)page_info.buffer;
3607 td->sitd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_SITD);
3609 td->sitd_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_SITD);
3629 usbd_get_page(pc + n, 0, &page_info);
3631 qtd = (ehci_qtd_t *)page_info.buffer;
3635 qtd->qtd_self = htohc32(sc, page_info.physaddr);
3637 qtd->qtd_self = htohc32(sc, (unsigned int)page_info.buffer);
3661 usbd_get_page(pc + n, 0, &page_info);
3663 qh = (ehci_qh_t *)page_info.buffer;
3667 qh->qh_self = htohc32(sc, page_info.physaddr | EHCI_LINK_QH);
3669 qh->qh_self = htohc32(sc, (unsigned int)page_info.buffer | EHCI_LINK_QH);