Lines Matching refs:Item
1009 @param[in] Item Current item to check against.
1013 @retval EFI_SUCCESS The current item isn't the same token/event as the
1021 IN NET_MAP_ITEM *Item,
1029 TokenInItem = (EFI_IP6_COMPLETION_TOKEN *) Item->Key;
1128 NET_MAP_ITEM *Item;
1143 Item = NetMapFindKey (&Wrap->IpInstance->TxTokens, Wrap->Token);
1145 if (Item != NULL) {
1146 NetMapRemoveItem (&Wrap->IpInstance->TxTokens, Item, NULL);
1557 line, after Ip6CancelPacket returns, the Item has been freed.
1560 @param[in] Item The current transmitted packet to test.
1563 @retval EFI_SUCCESS Continue to check the next Item.
1571 IN NET_MAP_ITEM *Item,
1581 // Return EFI_SUCCESS to check the next item in the map if
1584 if ((Token != NULL) && (Token != Item->Key)) {
1588 Wrap = (IP6_TXTOKEN_WRAP *) Item->Value;
1592 // Don't access the Item, Wrap and Token's members after this point.
1593 // Item and wrap has been freed. And we no longer own the Token.
1598 // If only one item is to be cancel, return EFI_ABORTED to stop
1614 @param[in] Item Current receive request to cancel.
1628 IN NET_MAP_ITEM *Item,
1636 This = Item->Key;
1642 NetMapRemoveItem (Map, Item, NULL);