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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUhciSched.h59 UINT8 EndPoint; member in struct:_UHCI_ASYNC_REQUEST
190 @param EndPoint EndPoint Address.
209 IN UINT8 EndPoint,
224 @param EndPoint EndPoint Address.
236 IN UINT8 EndPoint,
H A DUhciQueue.h71 UINT32 EndPoint : 4; member in struct:__anon10840
246 @param EndPoint Endpoint Number.
262 IN UINT8 EndPoint,
H A DUhciQueue.c350 Td->TdHw.EndPoint = 0;
414 Td->TdHw.EndPoint = Endpoint & 0x0F;
462 Td->TdHw.EndPoint = 0;
617 @param EndPoint Endpoint Number.
633 IN UINT8 EndPoint,
668 EndPoint,
630 UhciCreateBulkOrIntTds( IN USB_HC_DEV *Uhc, IN UINT8 DevAddr, IN UINT8 EndPoint, IN UINT8 PktId, IN UINT8 *Data, IN UINT8 *DataPhy, IN UINTN DataLen, IN OUT UINT8 *DataToggle, IN UINT8 MaxPacket, IN BOOLEAN IsLow ) argument
H A DUhciSched.c680 @param EndPoint EndPoint Address.
699 IN UINT8 EndPoint,
721 AsyncReq->EndPoint = EndPoint;
813 @param EndPoint EndPoint Address.
825 IN UINT8 EndPoint,
854 if ((AsyncReq->DevAddr == DevAddr) && (AsyncReq->EndPoint == EndPoint)) {
694 UhciCreateAsyncReq( IN USB_HC_DEV *Uhc, IN UHCI_QH_SW *Qh, IN UHCI_TD_SW *FirstTd, IN UINT8 DevAddr, IN UINT8 EndPoint, IN UINTN DataLen, IN UINTN Interval, IN UINT8 *Data, IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback, IN VOID *Context, IN BOOLEAN IsLow ) argument
822 UhciRemoveAsyncReq( IN USB_HC_DEV *Uhc, IN UINT8 DevAddr, IN UINT8 EndPoint, OUT UINT8 *Toggle ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Wrq.c333 @param EndPoint The local/remote access point
342 IN UDP_END_POINT *EndPoint,
376 if (EndPoint->RemotePort != Instance->ConnectedPort) {
380 Instance->ConnectedPort = EndPoint->RemotePort;
340 Mtftp4WrqInput( IN NET_BUF *UdpPacket, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
H A DMtftp4Rrq.c23 @param EndPoint The local/remote access point of the packet
32 IN UDP_END_POINT *EndPoint,
611 @param EndPoint The local/remote access point of the packet
620 IN UDP_END_POINT *EndPoint,
651 Multicast = (BOOLEAN) (EndPoint->LocalAddr.Addr[0] == Instance->McastIp);
663 if (EndPoint->RemotePort != Instance->ConnectedPort) {
667 Instance->ConnectedPort = EndPoint->RemotePort;
618 Mtftp4RrqInput( IN NET_BUF *UdpPacket, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
H A DMtftp4Support.c386 @param EndPoint The local and remote UDP access point
395 IN UDP_END_POINT *EndPoint,
393 Mtftp4OnPacketSent( IN NET_BUF *Packet, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
H A DUsbMassBot.c53 EFI_USB_ENDPOINT_DESCRIPTOR EndPoint; local
86 Status = UsbIo->UsbGetEndpointDescriptor (UsbIo, Index, &EndPoint);
88 if (EFI_ERROR (Status) || !USB_IS_BULK_ENDPOINT (EndPoint.Attributes)) {
92 if (USB_IS_IN_ENDPOINT (EndPoint.EndpointAddress) &&
96 CopyMem(UsbBot->BulkInEndpoint, &EndPoint, sizeof (EndPoint));
99 if (USB_IS_OUT_ENDPOINT (EndPoint.EndpointAddress) &&
103 CopyMem (UsbBot->BulkOutEndpoint, &EndPoint, sizeof(EndPoint));
H A DUsbMassCbi.c67 EFI_USB_ENDPOINT_DESCRIPTOR EndPoint; local
101 Status = UsbIo->UsbGetEndpointDescriptor (UsbIo, Index, &EndPoint);
106 if (USB_IS_BULK_ENDPOINT (EndPoint.Attributes)) {
110 if (USB_IS_IN_ENDPOINT (EndPoint.EndpointAddress) &&
114 CopyMem(UsbCbi->BulkInEndpoint, &EndPoint, sizeof (EndPoint));;
117 if (USB_IS_OUT_ENDPOINT (EndPoint.EndpointAddress) &&
121 CopyMem(UsbCbi->BulkOutEndpoint, &EndPoint, sizeof (EndPoint));
123 } else if (USB_IS_INTERRUPT_ENDPOINT (EndPoint
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeUdpIoLib/
H A DDxeUdpIoLib.c173 UDP_END_POINT EndPoint; local
178 ZeroMem (&EndPoint, sizeof(UDP_END_POINT));
237 EndPoint.LocalPort = ((EFI_UDP4_SESSION_DATA *) Session)->DestinationPort;
238 EndPoint.RemotePort = ((EFI_UDP4_SESSION_DATA *) Session)->SourcePort;
241 &EndPoint.LocalAddr,
247 &EndPoint.RemoteAddr,
252 EndPoint.LocalAddr.Addr[0] = NTOHL (EndPoint.LocalAddr.Addr[0]);
253 EndPoint.RemoteAddr.Addr[0] = NTOHL (EndPoint
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Impl.c1276 @param EndPoint Udp4 address pair.
1285 UDP_END_POINT *EndPoint,
1460 UDP_END_POINT EndPoint; local
1539 ZeroMem (&EndPoint, sizeof (UDP_END_POINT));
1545 EndPoint.RemoteAddr.Addr[0] = NTOHL (Ip);
1548 EndPoint.RemotePort = DHCP_SERVER_PORT;
1550 EndPoint.RemotePort = Token->RemotePort;
1558 if (!IP4_NET_EQUAL (DhcpSb->ClientAddr, EndPoint.RemoteAddr.Addr[0], SubnetMask)) {
1566 Status = UdpIoSendDatagram (Instance->UdpIo, Wrap, &EndPoint, &Gateway, DhcpOnPacketSent, NULL);
1283 PxeDhcpInput( NET_BUF *UdpPacket, UDP_END_POINT *EndPoint, EFI_STATUS IoStatus, VOID *Context ) argument
H A DDhcp4Io.c950 @param EndPoint The local/remote UDP access point
959 UDP_END_POINT *EndPoint,
1123 @param EndPoint The local/remote UDP access point
1132 UDP_END_POINT *EndPoint,
1176 UDP_END_POINT EndPoint; local
1392 EndPoint.RemoteAddr.Addr[0] = 0xffffffff;
1393 EndPoint.LocalAddr.Addr[0] = 0;
1394 EndPoint.RemotePort = DHCP_SERVER_PORT;
1395 EndPoint.LocalPort = DHCP_CLIENT_PORT;
1399 EndPoint
957 DhcpInput( NET_BUF *UdpPacket, UDP_END_POINT *EndPoint, EFI_STATUS IoStatus, VOID *Context ) argument
1130 DhcpOnPacketSent( NET_BUF *Packet, UDP_END_POINT *EndPoint, EFI_STATUS IoStatus, VOID *Context ) argument
1441 UDP_END_POINT EndPoint; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIkeService.c571 @param[in] EndPoint Point to UDP_END_POINT which contains the information of
581 IN UDP_END_POINT *EndPoint,
609 if (EndPoint->RemotePort != IKE_DEFAULT_PORT) {
625 *(UINT32 *) IkePacket->RemotePeerIp.Addr = HTONL ((*(UINT32 *) EndPoint->RemoteAddr.Addr));
629 NTOHLLL (&EndPoint->RemoteAddr.v6),
579 IkeDispatch( IN NET_BUF *Packet, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Dhcp6Dxe/
H A DDhcp6Io.c2614 @param[in] EndPoint The pointer to the udp end point.
2623 IN UDP_END_POINT *EndPoint,
2621 Dhcp6ReceivePacket( IN NET_BUF *Udp6Wrap, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
H A DDhcp6Utility.c589 @param[in] EndPoint The pointer to the udp end point.
598 IN UDP_END_POINT *EndPoint,
596 Dhcp6OnTransmitted( IN NET_BUF *Wrap, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
/vbox/src/VBox/Devices/USB/
H A DVUSBDevice.cpp883 * @param EndPoint The endpoint.
888 bool vusbDevStandardRequest(PVUSBDEV pDev, int EndPoint, PVUSBSETUP pSetup, void *pvBuf, uint32_t *pcbBuf) argument
928 return s_apfnStdReq[pSetup->bRequest](pDev, EndPoint, pSetup, (uint8_t *)pvBuf, pcbBuf);
/vbox/src/VBox/RDP/client-1.8.3/vrdp/
H A Drdpusb.c169 static inline int op_usbproxy_back_clear_halted_ep(PUSBPROXYDEV pDev, unsigned EndPoint) argument
171 return g_USBProxyDeviceHost.pfnClearHaltedEndpoint (pDev, EndPoint);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/Ikev2/
H A DPayload.c3042 @param[in] EndPoint Pointer to UDP_END_POINT containing the remote and local
3052 IN UDP_END_POINT *EndPoint,
3183 UDP_END_POINT EndPoint; local
3228 ZeroMem (&EndPoint, sizeof (UDP_END_POINT));
3229 EndPoint.RemotePort = IKE_DEFAULT_PORT;
3231 CopyMem (&EndPoint.RemoteAddr, &Common->RemotePeerIp, sizeof (EFI_IP_ADDRESS));
3232 CopyMem (&EndPoint.LocalAddr, &Common->LocalPeerIp, sizeof (EFI_IP_ADDRESS));
3237 EndPoint.RemoteAddr.Addr[0] = HTONL (EndPoint.RemoteAddr.Addr[0]);
3238 EndPoint
3050 Ikev2OnPacketSent( IN NET_BUF *Packet, IN UDP_END_POINT *EndPoint, IN EFI_STATUS IoStatus, IN VOID *Context ) argument
[all...]

Completed in 70 milliseconds