Searched defs:pIsocReq (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/
H A DVBoxUSB-solaris.c2602 vboxusb_isoc_req_t *pIsocReq = list_remove_head(&pEp->hIsocInLandedReqs); local
2603 while (pIsocReq)
2605 kmem_free(pIsocReq, sizeof(vboxusb_isoc_req_t));
2606 pIsocReq = list_remove_head(&pEp->hIsocInLandedReqs);
3684 vboxusb_isoc_req_t *pIsocReq = kmem_alloc(sizeof(vboxusb_isoc_req_t), KM_NOSLEEP);
3685 if (RT_LIKELY(pIsocReq))
3687 pIsocReq->pMsg = pReq->isoc_data;
3689 pIsocReq->cIsocPkts = pReq->isoc_pkts_count;
3693 pIsocReq->aIsocPkts[i].cbActPkt = pReq->isoc_pkt_descr[i].isoc_pkt_actual_length;
3694 pIsocReq
[all...]

Completed in 53 milliseconds