HomeSort by relevance Sort by last modified time
    Searched defs:IpIo (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Io.c 2 I/O interfaces between TCP and IpIo.
49 Send the segment to IP via IpIo function.
69 IP_IO *IpIo;
82 IpIo = NULL;
83 IpSender = IpIoFindSender (&IpIo, IP_VERSION_4, &Source);
93 IpIo = TcpProto->TcpService->IpIo;
104 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, &Destination, &Override);
Tcp4Dispatcher.c 262 IP_IO *IpIo;
276 IpIo = ProtoData->TcpService->IpIo;
281 Tcb->IpInfo = IpIoAddIp (IpIo);
295 IpIo->Image,
300 IpIoRemoveIp (IpIo, Tcb->IpInfo);
342 ProtoData->TcpService->IpIo->Image,
346 IpIoRemoveIp (ProtoData->TcpService->IpIo, Tcb->IpInfo);
636 Ip = ProtoData->TcpService->IpIo->Ip.Ip4;
Tcp4Driver.h 48 IP_IO *IpIo; // IP Io consumed by TCP4
88 Send the segment to IP via IpIo function.
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpIo.c 55 Send the segment to IP via IpIo function.
77 IP_IO *IpIo;
85 IpIo = NULL;
86 IpSender = IpIoFindSender (&IpIo, Version, Src);
97 // configuration data. Here we get the IpIo we need and use the default IP
98 // instance in this IpIo to send the packet. The dest address is configured
107 IpIo = TcpProto->TcpService->IpIo;
121 ASSERT (Version == IpIo->IpVersion);
136 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, Dest, &Override);
    [all...]
TcpDispatcher.c 353 IP_IO *IpIo;
374 IpIo = ProtoData->TcpService->IpIo;
379 Tcb->IpInfo = IpIoAddIp (IpIo);
393 IpIo->Image,
398 IpIoRemoveIp (IpIo, Tcb->IpInfo);
447 ProtoData->TcpService->IpIo->Image,
451 IpIoRemoveIp (ProtoData->TcpService->IpIo, Tcb->IpInfo);
807 ProtoData->TcpService->IpIo->Ip.Ip4->Poll (ProtoData->TcpService->IpIo->Ip.Ip4);
    [all...]
TcpDriver.h 34 IP_IO *IpIo;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Impl.h 72 IP_IO *IpIo;
Udp4Impl.c 56 This function is the packet transmitting notify function registered to the IpIo
57 interface. It's called to signal the udp TxToken when IpIo layer completes the
76 This function processes the received datagram passed up by the IpIo layer.
241 @param[in] IpIo Pointer to the IP_IO instance.
250 IN IP_IO *IpIo,
291 // Create the IpIo for this service context.
293 Udp4Service->IpIo = IpIoCreate (ImageHandle, ControllerHandle, IP_VERSION_4);
294 if (Udp4Service->IpIo == NULL) {
299 // Set the OpenData used to open the IpIo.
310 // Configure and start the IpIo.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/
Udp6Impl.h 80 IP_IO *IpIo;
Udp6Impl.c 56 This function is the packet transmitting notify function registered to the IpIo
57 interface. It's called to signal the udp TxToken when the IpIo layer completes
76 This function processes the received datagram passed up by the IpIo layer.
240 @param[in] IpIo Pointer to the IP_IO instance.
249 IN IP_IO *IpIo,
303 // Create the IpIo for this service context.
305 Udp6Service->IpIo = IpIoCreate (ImageHandle, ControllerHandle, IP_VERSION_6);
306 if (Udp6Service->IpIo == NULL) {
311 // Set the OpenData used to open the IpIo.
324 // Configure and start the IpIo.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeIpIoLib/
DxeIpIoLib.c 2 IpIo Library.
261 @param[in] IpIo Pointer to the IP_IO instance.
271 IN IP_IO *IpIo,
284 ASSERT (IpIo->IpVersion == IP_VERSION_4);
381 IpIo->PktRcvdNotify (EFI_ICMP_ERROR, IcmpErr, Session, Pkt, IpIo->RcvdContext);
390 @param[in] IpIo Pointer to the IP_IO instance.
400 IN IP_IO *IpIo,
415 ASSERT (IpIo->IpVersion == IP_VERSION_6);
542 IpIo->PktRcvdNotify (EFI_ICMP_ERROR, IcmpErr, Session, Pkt, IpIo->RcvdContext);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
IpIoLib.h 3 It provides the combined IpIo layer on the EFI IP4 Protocol and EFI IP6 protocol.
88 /// that consumes IpIO.
218 /// This data structure wraps Ip4/Ip6 instances. The IpIo Library uses it for all
223 /// The node used to link this IpIo to the active IpIo list.
288 IP_IO *IpIo;
341 @param[in, out] IpIo The pointer to the IP_IO instance that needs to be
351 IN OUT IP_IO *IpIo
360 @param[in, out] IpIo The pointer to the IP_IO instance that needs to stop.
369 IN OUT IP_IO *IpIo
    [all...]

Completed in 604 milliseconds