Lines Matching refs:RxData
914 if (IpInfo->DummyRcvToken.Ip4Token.Packet.RxData != NULL) { in IpIoDummyHandlerDpc()
915 RecycleEvent = IpInfo->DummyRcvToken.Ip4Token.Packet.RxData->RecycleSignal; in IpIoDummyHandlerDpc()
920 if (IpInfo->DummyRcvToken.Ip6Token.Packet.RxData != NULL) { in IpIoDummyHandlerDpc()
921 RecycleEvent = IpInfo->DummyRcvToken.Ip6Token.Packet.RxData->RecycleSignal; in IpIoDummyHandlerDpc()
994 IP_IO_IP_RX_DATA *RxData; in IpIoListenHandlerDpc() local
1002 RxData = (IP_IO_IP_RX_DATA *) IpIo->RcvToken.Ip4Token.Packet.RxData; in IpIoListenHandlerDpc()
1005 RxData = (IP_IO_IP_RX_DATA *) IpIo->RcvToken.Ip6Token.Packet.RxData; in IpIoListenHandlerDpc()
1017 if (((EFI_SUCCESS != Status) && (EFI_ICMP_ERROR != Status)) || (NULL == RxData)) { in IpIoListenHandlerDpc()
1031 if ((EFI_IP4 (RxData->Ip4RxData.Header->SourceAddress) != 0) && in IpIoListenHandlerDpc()
1033 …IP4_NET_EQUAL (IpIo->StationIp, EFI_NTOHL (((EFI_IP4_RECEIVE_DATA *) RxData)->Header->SourceAddres… in IpIoListenHandlerDpc()
1034 …!NetIp4IsUnicast (EFI_NTOHL (((EFI_IP4_RECEIVE_DATA *) RxData)->Header->SourceAddress), IpIo->Subn… in IpIoListenHandlerDpc()
1041 if (RxData->Ip4RxData.DataLength == 0) { in IpIoListenHandlerDpc()
1052 (NET_FRAGMENT *) RxData->Ip4RxData.FragmentTable, in IpIoListenHandlerDpc()
1053 RxData->Ip4RxData.FragmentCount, in IpIoListenHandlerDpc()
1057 RxData->Ip4RxData.RecycleSignal in IpIoListenHandlerDpc()
1066 Session.Source.Addr[0] = EFI_IP4 (RxData->Ip4RxData.Header->SourceAddress); in IpIoListenHandlerDpc()
1067 Session.Dest.Addr[0] = EFI_IP4 (RxData->Ip4RxData.Header->DestinationAddress); in IpIoListenHandlerDpc()
1068 Session.IpHdr.Ip4Hdr = RxData->Ip4RxData.Header; in IpIoListenHandlerDpc()
1069 Session.IpHdrLen = RxData->Ip4RxData.HeaderLength; in IpIoListenHandlerDpc()
1073 if (!NetIp6IsValidUnicast(&RxData->Ip6RxData.Header->SourceAddress)) { in IpIoListenHandlerDpc()
1077 if (RxData->Ip6RxData.DataLength == 0) { in IpIoListenHandlerDpc()
1088 (NET_FRAGMENT *) RxData->Ip6RxData.FragmentTable, in IpIoListenHandlerDpc()
1089 RxData->Ip6RxData.FragmentCount, in IpIoListenHandlerDpc()
1093 RxData->Ip6RxData.RecycleSignal in IpIoListenHandlerDpc()
1104 &RxData->Ip6RxData.Header->SourceAddress, in IpIoListenHandlerDpc()
1109 &RxData->Ip6RxData.Header->DestinationAddress, in IpIoListenHandlerDpc()
1112 Session.IpHdr.Ip6Hdr = RxData->Ip6RxData.Header; in IpIoListenHandlerDpc()
1113 Session.IpHdrLen = RxData->Ip6RxData.HeaderLength; in IpIoListenHandlerDpc()
1135 gBS->SignalEvent (RxData->Ip4RxData.RecycleSignal); in IpIoListenHandlerDpc()
1137 gBS->SignalEvent (RxData->Ip6RxData.RecycleSignal); in IpIoListenHandlerDpc()