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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBotPei/
H A DPeiUsbLib.c221 UINT8 EndpointIndex; local
223 EndpointIndex = 0;
226 while (EndpointIndex < MAX_ENDPOINT) {
227 Status = UsbIoPpi->UsbGetEndpointDescriptor (PeiServices, UsbIoPpi, EndpointIndex, &EndpointDescriptor);
236 EndpointIndex++;
239 if (EndpointIndex == MAX_ENDPOINT) {
254 if ((PeiUsbDev->DataToggle & (1 << EndpointIndex)) != 0) {
255 PeiUsbDev->DataToggle = (UINT8) (PeiUsbDev->DataToggle ^ (1 << EndpointIndex));
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusPei/
H A DPeiUsbLib.c221 UINT8 EndpointIndex; local
223 EndpointIndex = 0;
226 while (EndpointIndex < MAX_ENDPOINT) {
227 Status = UsbIoPpi->UsbGetEndpointDescriptor (PeiServices, UsbIoPpi, EndpointIndex, &EndpointDescriptor);
236 EndpointIndex++;
239 if (EndpointIndex == MAX_ENDPOINT) {
254 if ((PeiUsbDev->DataToggle & (1 << EndpointIndex)) != 0) {
255 PeiUsbDev->DataToggle = (UINT8) (PeiUsbDev->DataToggle ^ (1 << EndpointIndex));
H A DUsbIoPeim.c126 UINT8 EndpointIndex; local
132 EndpointIndex = 0;
136 while (EndpointIndex < MAX_ENDPOINT) {
137 Status = PeiUsbGetEndpointDescriptor (PeiServices, This, EndpointIndex, &EndpointDescriptor);
146 EndpointIndex++;
149 if (EndpointIndex == MAX_ENDPOINT) {
153 MaxPacketLength = PeiUsbDev->EndpointDesc[EndpointIndex]->MaxPacketSize;
154 if ((PeiUsbDev->DataToggle & (1 << EndpointIndex)) != 0) {
193 PeiUsbDev->DataToggle = (UINT8) (PeiUsbDev->DataToggle ^ (1 << EndpointIndex));
229 @param EndpointIndex Th
238 PeiUsbGetEndpointDescriptor( IN EFI_PEI_SERVICES **PeiServices, IN PEI_USB_IO_PPI *This, IN UINT8 EndpointIndex, OUT EFI_USB_ENDPOINT_DESCRIPTOR **EndpointDescriptor ) argument
[all...]

Completed in 45 milliseconds