Lines Matching refs:pIsocReq
2602 vboxusb_isoc_req_t *pIsocReq = list_remove_head(&pEp->hIsocInLandedReqs);
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->aIsocPkts[i].enmStatus = vboxUSBSolarisGetUrbStatus(pReq->isoc_pkt_descr[i].isoc_pkt_status);
3697 bcopy(pReq->isoc_pkt_descr, pIsocReq->aIsocPkts, pReq->isoc_pkts_count * sizeof(VUSBISOC_PKT_DESC));
3701 list_insert_tail(&pEp->hIsocInLandedReqs, pIsocReq);
3702 pEp->cbIsocInLandedReqs += MBLKL(pIsocReq->pMsg);