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()
1032 !NetIp4IsUnicast (EFI_NTOHL (((EFI_IP4_RECEIVE_DATA *) RxData)->Header->SourceAddress), 0)) { in IpIoListenHandlerDpc()
1043 (NET_FRAGMENT *) RxData->Ip4RxData.FragmentTable, in IpIoListenHandlerDpc()
1044 RxData->Ip4RxData.FragmentCount, in IpIoListenHandlerDpc()
1048 RxData->Ip4RxData.RecycleSignal in IpIoListenHandlerDpc()
1057 Session.Source.Addr[0] = EFI_IP4 (RxData->Ip4RxData.Header->SourceAddress); in IpIoListenHandlerDpc()
1058 Session.Dest.Addr[0] = EFI_IP4 (RxData->Ip4RxData.Header->DestinationAddress); in IpIoListenHandlerDpc()
1059 Session.IpHdr.Ip4Hdr = RxData->Ip4RxData.Header; in IpIoListenHandlerDpc()
1060 Session.IpHdrLen = RxData->Ip4RxData.HeaderLength; in IpIoListenHandlerDpc()
1064 if (!NetIp6IsValidUnicast(&RxData->Ip6RxData.Header->SourceAddress)) { in IpIoListenHandlerDpc()
1072 (NET_FRAGMENT *) RxData->Ip6RxData.FragmentTable, in IpIoListenHandlerDpc()
1073 RxData->Ip6RxData.FragmentCount, in IpIoListenHandlerDpc()
1077 RxData->Ip6RxData.RecycleSignal in IpIoListenHandlerDpc()
1088 &RxData->Ip6RxData.Header->SourceAddress, in IpIoListenHandlerDpc()
1093 &RxData->Ip6RxData.Header->DestinationAddress, in IpIoListenHandlerDpc()
1096 Session.IpHdr.Ip6Hdr = RxData->Ip6RxData.Header; in IpIoListenHandlerDpc()
1097 Session.IpHdrLen = RxData->Ip6RxData.HeaderLength; in IpIoListenHandlerDpc()
1119 gBS->SignalEvent (RxData->Ip4RxData.RecycleSignal); in IpIoListenHandlerDpc()
1121 gBS->SignalEvent (RxData->Ip6RxData.RecycleSignal); in IpIoListenHandlerDpc()