HomeSort by relevance Sort by last modified time
    Searched defs:RtCacheEntry (Results 1 - 2 of 2) 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...]
  /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...]

Completed in 719 milliseconds