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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbBus.c76 USB_ENDPOINT_DESC *EpDesc; local
138 EpDesc = UsbGetEndpointDesc (UsbIf, (UINT8) Request->Index);
140 if (EpDesc != NULL) {
141 EpDesc->Toggle = 0;
233 USB_ENDPOINT_DESC *EpDesc; local
250 EpDesc = UsbGetEndpointDesc (UsbIf, Endpoint);
252 if ((EpDesc == NULL) || (USB_ENDPOINT_TYPE (&EpDesc->Desc) != USB_ENDPOINT_BULK)) {
258 Toggle = EpDesc->Toggle;
264 EpDesc
328 USB_ENDPOINT_DESC *EpDesc; local
408 USB_ENDPOINT_DESC *EpDesc; local
[all...]
H A DUsbEnumer.c33 USB_ENDPOINT_DESC *EpDesc; local
40 EpDesc = UsbIf->IfSetting->Endpoints[Index];
42 if (EpDesc->Desc.EndpointAddress == EpAddr) {
43 return EpDesc;
H A DUsbHub.c598 EFI_USB_ENDPOINT_DESCRIPTOR *EpDesc; local
603 EpDesc = &(HubIf->HubEp->Desc);
615 EpDesc->EndpointAddress
624 EpDesc->EndpointAddress,
639 EpDesc->EndpointAddress,
694 USB_ENDPOINT_DESC *EpDesc; local
709 EpDesc = NULL;
715 EpDesc = Setting->Endpoints[Index];
717 if (USB_BIT_IS_SET (EpDesc->Desc.EndpointAddress, USB_ENDPOINT_DIR_IN) &&
718 (USB_ENDPOINT_TYPE (&EpDesc
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhciSched.c2313 USB_ENDPOINT_DESCRIPTOR *EpDesc; local
2349 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)(IfDesc + 1);
2351 while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
2352 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
2355 EpAddr = (UINT8)(EpDesc->EndpointAddress & 0x0F);
2356 Direction = (UINT8)((EpDesc->EndpointAddress & 0x80) ? EfiUsbDataIn : EfiUsbDataOut);
2365 InputContext->EP[Dci-1].MaxPacketSize = EpDesc->MaxPacketSize;
2376 switch (EpDesc
2505 USB_ENDPOINT_DESCRIPTOR *EpDesc; local
[all...]
/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/
H A DVBoxUSB-solaris.c92 #define VBOXUSB_XFER_TYPE(endp) ((endp)->EpDesc.bmAttributes & USB_EP_ATTR_MASK)
94 #define VBOXUSB_XFER_DIR(endp) ((endp)->EpDesc.bEndpointAddress & USB_EP_DIR_IN)
207 usb_ep_descr_t EpDesc; /* Endpoint descriptor */ member in struct:vboxusb_ep_t
2298 if ((pEp->EpDesc.bEndpointAddress & USB_EP_NUM_MASK) == 0)
2389 pEp->EpDesc = *pEpDesc;
2408 EpIndex, pEp->EpDesc.bEndpointAddress));
2675 if ((pEp->EpDesc.bEndpointAddress & USB_EP_NUM_MASK) == 0)
2687 int rc = usb_pipe_open(pState->pDip, &pEp->EpDesc, &pEp->PipePolicy, USB_FLAGS_NOSLEEP, &pEp->pPipe);
2705 uint16_t cbMax = VBOXUSB_PKT_SIZE(pEp->EpDesc.wMaxPacketSize);
2775 Log((DEVICE_NAME ":vboxUSBSolarisClosePipe pipe bmAttributes=%#x bEndpointAddress=%#x\n", pEp->EpDesc
[all...]

Completed in 56 milliseconds