Lines Matching refs:Entry
226 LIST_ENTRY *Entry;
230 NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
231 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
262 LIST_ENTRY *Entry;
266 NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
267 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
751 @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
752 If TRUE, this function will delete matching DNS Cache entry.
753 @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
754 If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
755 @param DnsCacheEntry Entry Pointer to DNS Cache entry.
772 LIST_ENTRY *Entry;
781 NET_LIST_FOR_EACH_SAFE (Entry, Next, Dns4CacheList) {
782 Item = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
786 // This is the Dns cache entry
790 // Delete matching DNS Cache entry
843 @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
844 If TRUE, this function will delete matching DNS Cache entry.
845 @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
846 If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
847 @param DnsCacheEntry Entry Pointer to DNS Cache entry.
863 LIST_ENTRY *Entry;
872 NET_LIST_FOR_EACH_SAFE (Entry, Next, Dns6CacheList) {
873 Item = NET_LIST_USER_STRUCT (Entry, DNS6_CACHE, AllCacheLink);
877 // This is the Dns cache entry
881 // Delete matching DNS Cache entry
949 LIST_ENTRY *Entry;
958 NET_LIST_FOR_EACH_SAFE (Entry, Next, Dns4ServerList) {
959 Item = NET_LIST_USER_STRUCT (Entry, DNS4_SERVER_IP, AllServerLink);
1004 LIST_ENTRY *Entry;
1013 NET_LIST_FOR_EACH_SAFE (Entry, Next, Dns6ServerList) {
1014 Item = NET_LIST_USER_STRUCT (Entry, DNS6_SERVER_IP, AllServerLink);
1043 @param TokensMap All DNS transmittal Tokens entry.
1047 @param Item Return corresponding Token entry.
1062 LIST_ENTRY *Entry;
1070 NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
1071 *Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1412 // This is address entry, get Data.
1471 // This is address entry, get Data.
1686 LIST_ENTRY *Entry;
1698 NET_LIST_FOR_EACH (Entry, &Instance->Dns4TxTokens.Used) {
1699 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1707 NET_LIST_FOR_EACH (Entry, &Instance->Dns6TxTokens.Used) {
1708 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1913 LIST_ENTRY *Entry;
1933 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Service->Dns4ChildrenList) {
1934 Instance = NET_LIST_USER_STRUCT (Entry, DNS_INSTANCE, Link);
1977 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Service->Dns6ChildrenList) {
1978 Instance = NET_LIST_USER_STRUCT (Entry, DNS_INSTANCE, Link);
2033 LIST_ENTRY *Entry;
2044 NET_LIST_FOR_EACH_SAFE (Entry, Next, &mDriverData->Dns4CacheList) {
2045 Item4 = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
2049 Entry = mDriverData->Dns4CacheList.ForwardLink;
2050 while (Entry != &mDriverData->Dns4CacheList) {
2051 Item4 = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
2054 Entry = mDriverData->Dns4CacheList.ForwardLink;
2056 Entry = Entry->ForwardLink;
2063 NET_LIST_FOR_EACH_SAFE (Entry, Next, &mDriverData->Dns6CacheList) {
2064 Item6 = NET_LIST_USER_STRUCT (Entry, DNS6_CACHE, AllCacheLink);
2068 Entry = mDriverData->Dns6CacheList.ForwardLink;
2069 while (Entry != &mDriverData->Dns6CacheList) {
2070 Item6 = NET_LIST_USER_STRUCT (Entry, DNS6_CACHE, AllCacheLink);
2073 Entry = mDriverData->Dns6CacheList.ForwardLink;
2075 Entry = Entry->ForwardLink;