HomeSort by relevance Sort by last modified time
    Searched refs:RtCacheEntry (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.c 96 IP4_ROUTE_CACHE_ENTRY *RtCacheEntry;
98 RtCacheEntry = AllocatePool (sizeof (IP4_ROUTE_CACHE_ENTRY));
100 if (RtCacheEntry == NULL) {
104 InitializeListHead (&RtCacheEntry->Link);
106 RtCacheEntry->RefCnt = 1;
107 RtCacheEntry->Dest = Dst;
108 RtCacheEntry->Src = Src;
109 RtCacheEntry->NextHop = GateWay;
110 RtCacheEntry->Tag = Tag;
112 return RtCacheEntry;
    [all...]
Ip4Route.h 182 @param RtCacheEntry The route cache entry to free.
187 IN IP4_ROUTE_CACHE_ENTRY *RtCacheEntry
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.c 181 IP6_ROUTE_CACHE_ENTRY *RtCacheEntry;
183 RtCacheEntry = AllocatePool (sizeof (IP6_ROUTE_CACHE_ENTRY));
185 if (RtCacheEntry == NULL) {
189 RtCacheEntry->RefCnt = 1;
190 RtCacheEntry->Tag = Tag;
192 IP6_COPY_ADDRESS (&RtCacheEntry->Destination, Dst);
193 IP6_COPY_ADDRESS (&RtCacheEntry->Source, Src);
194 IP6_COPY_ADDRESS (&RtCacheEntry->NextHop, GateWay);
196 return RtCacheEntry;
202 @param[in, out] RtCacheEntry The route cache entry to free.
    [all...]
Ip6Route.h 109 @param[in, out] RtCacheEntry The route cache entry to free.
114 IN OUT IP6_ROUTE_CACHE_ENTRY *RtCacheEntry

Completed in 246 milliseconds