Home | History | Annotate | Download | only in Udp4Dxe

Lines Matching defs:RxData

154   This function wraps the Packet and the RxData.

159 @param[in] RxData Pointer to the EFI_UDP4_RECEIVE_DATA of this
162 @return Pointer to the structure wrapping the RxData and the Packet.
169 IN EFI_UDP4_RECEIVE_DATA *RxData
178 @param[in] RxData Pointer to the EFI_UDP4_RECEIVE_DATA of this
188 IN EFI_UDP4_RECEIVE_DATA *RxData
436 // Remove this RxData if it timeouts.
1372 gBS->CloseEvent (Wrap->RxData.RecycleSignal);
1379 This function wraps the Packet and the RxData.
1384 @param[in] RxData Pointer to the EFI_UDP4_RECEIVE_DATA of this
1387 @return Pointer to the structure wrapping the RxData and the Packet.
1394 IN EFI_UDP4_RECEIVE_DATA *RxData
1411 CopyMem (&Wrap->RxData, RxData, sizeof (Wrap->RxData));
1421 &Wrap->RxData.RecycleSignal
1441 @param[in] RxData Pointer to the EFI_UDP4_RECEIVE_DATA of this
1451 IN EFI_UDP4_RECEIVE_DATA *RxData
1471 if (Udp4MatchDgram (Instance, &RxData->UdpSession)) {
1473 // Wrap the RxData and put this Wrap into the instances RcvdDgramQue.
1475 Wrap = Udp4WrapRxData (Instance, Packet, RxData);
1506 EFI_UDP4_RECEIVE_DATA *RxData;
1533 // Build the FragmentTable and set the FragmentCount in RxData.
1535 RxData = &Wrap->RxData;
1536 RxData->FragmentCount = Wrap->Packet->BlockOpNum;
1540 (NET_FRAGMENT *) RxData->FragmentTable,
1541 &RxData->FragmentCount
1545 Token->Packet.RxData = &Wrap->RxData;
1607 EFI_UDP4_RECEIVE_DATA RxData;
1636 Udp4Session = &RxData.UdpSession;
1648 RxData.DataLength = (UINT32) Packet->TotalSize;
1653 Enqueued = Udp4EnqueueDgram (Udp4Service, Packet, &RxData);