Home | History | Annotate | Download | only in Udp6Dxe

Lines Matching refs:RcvdDgramQue

439     NET_LIST_FOR_EACH_SAFE (WrapEntry, NextEntry, &Instance->RcvdDgramQue) {

480 InitializeListHead (&Instance->RcvdDgramQue);
1176 This function removes all the Wrap datas in the RcvdDgramQue.
1188 while (!IsListEmpty (&Instance->RcvdDgramQue)) {
1190 // Iterate all the Wraps in the RcvdDgramQue.
1192 Wrap = NET_LIST_HEAD (&Instance->RcvdDgramQue, UDP6_RXDATA_WRAP, Link);
1195 // The Wrap will be removed from the RcvdDgramQue by this function call.
1462 // Wrap the RxData and put this Wrap into the instances RcvdDgramQue.
1471 InsertTailList (&Instance->RcvdDgramQue, &Wrap->Link);
1498 if (!IsListEmpty (&Instance->RcvdDgramQue) &&
1502 Wrap = NET_LIST_HEAD (&Instance->RcvdDgramQue, UDP6_RXDATA_WRAP, Link);
1518 NetListRemoveHead (&Instance->RcvdDgramQue);