Lines Matching defs:pPipeInfo

252             if (pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo)
253 vboxUsbMemFree(pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo);
254 pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo = NULL;
647 pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo = (VBOXUSB_PIPE_INFO *)vboxUsbMemAlloc(pIfLe[i].Interface->NumberOfPipes * sizeof(VBOXUSB_PIPE_INFO));
648 if (!pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo)
657 pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo = NULL;
664 pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo[j].EndpointAddress = pIfLe[i].Interface->Pipes[j].EndpointAddress;
665 pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo[j].NextScheduledFrame = 0;
790 if (pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo)
792 vboxUsbMemFree(pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo);
800 pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo = (VBOXUSB_PIPE_INFO*)vboxUsbMemAlloc(pIfDr->bNumEndpoints * sizeof(VBOXUSB_PIPE_INFO));
801 if (!pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo)
809 pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo = NULL;
826 pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo[i].EndpointAddress = pIfInfo->Pipes[i].EndpointAddress;
827 pDevExt->Rt.pVBIfaceInfo[InterfaceNumber].pPipeInfo[i].NextScheduledFrame = 0;
911 if (pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo[j].EndpointAddress == EndPointAddress)
912 return &pDevExt->Rt.pVBIfaceInfo[i].pPipeInfo[j];
1308 VBOXUSB_PIPE_INFO *pPipeInfo = vboxUsbRtGetPipeInfo(pDevExt, pUrbInfo->ep | ((pUrbInfo->dir == USBSUP_DIRECTION_IN) ? 0x80 : 0x00));
1309 if (pPipeInfo == NULL)
1312 AssertMsgFailed((__FUNCTION__": pPipeInfo not found\n"));
1343 iStartFrame = pPipeInfo->NextScheduledFrame;
1346 pPipeInfo->NextScheduledFrame = iFrame + pUrbInfo->numIsoPkts;