Home
last modified time | relevance | path

Searched refs:CacheEntry (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
DArpImpl.c82 ARP_CACHE_ENTRY *CacheEntry; in ArpOnFrameRcvdDpc() local
153 CacheEntry = ArpFindDeniedCacheEntry ( in ArpOnFrameRcvdDpc()
158 if (CacheEntry != NULL) { in ArpOnFrameRcvdDpc()
209 CacheEntry = ArpFindNextCacheEntryInTable ( in ArpOnFrameRcvdDpc()
216 if (CacheEntry != NULL) { in ArpOnFrameRcvdDpc()
220 ArpFillAddressInCacheEntry (CacheEntry, &SenderAddress[Hardware], NULL); in ArpOnFrameRcvdDpc()
221 CacheEntry->DecayTime = CacheEntry->DefaultDecayTime; in ArpOnFrameRcvdDpc()
237 CacheEntry = ArpFindNextCacheEntryInTable ( in ArpOnFrameRcvdDpc()
244 if (CacheEntry == NULL) { in ArpOnFrameRcvdDpc()
248 CacheEntry = ArpAllocCacheEntry (NULL); in ArpOnFrameRcvdDpc()
[all …]
DArpMain.c142 ARP_CACHE_ENTRY *CacheEntry; in ArpAdd() local
186 CacheEntry = ArpFindDeniedCacheEntry ( in ArpAdd()
192 if (CacheEntry == NULL) { in ArpAdd()
196 CacheEntry = ArpFindNextCacheEntryInTable ( in ArpAdd()
205 if ((CacheEntry != NULL) && !Overwrite) { in ArpAdd()
213 if ((CacheEntry == NULL) && (TargetSwAddress != NULL)) { in ArpAdd()
217 CacheEntry = ArpFindNextCacheEntryInTable ( in ArpAdd()
226 if (CacheEntry != NULL) { in ArpAdd()
230 RemoveEntryList (&CacheEntry->List); in ArpAdd()
235 CacheEntry = ArpAllocCacheEntry (Instance); in ArpAdd()
[all …]
DArpImpl.h564 IN ARP_CACHE_ENTRY *CacheEntry,
581 IN ARP_CACHE_ENTRY *CacheEntry,
622 IN ARP_CACHE_ENTRY *CacheEntry,
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dfcache.c39 CacheEntry *dumpFcache1(char *prev) in dumpFcache1()
41 CacheEntry *dumpFcache1(prev) in dumpFcache1()
50 CacheEntry *least=NULL;
56 CacheEntry *q =(CacheEntry *) *p;
78 void reportFcache(CacheEntry *q) in reportFcache()
81 CacheEntry *q; in reportFcache()
111 CacheEntry *next; in DumpFcache()
Ddumpcycles.c17 CacheEntry *f; in dumpcycles()
33 f = (CacheEntry *) in dumpcycles()
Dgeneric.h151 } CacheEntry; typedef
189 #define newCacheEntry(s) (CacheEntry *) newEntry(s, sizeof(CacheEntry))
Dfset.c171 CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'i',k));
183 CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'o',k));
240 CacheEntry *q = newCacheEntry( Fkey(p->rname,'i',k) );
252 CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'o',k));
Dmisc.c812 CacheEntry *f;
851 f = (CacheEntry *) hash_get(Fcache, Fkey(RulePtr[*p]->rname,'o',k));
886 CacheEntry *f,*g;
905 f = (CacheEntry *)
923 g = (CacheEntry *)
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
DIp4Output.c228 IP4_ROUTE_CACHE_ENTRY *CacheEntry; in Ip4Output() local
312 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src); in Ip4Output()
314 CacheEntry = Ip4Route (IpInstance->RouteTable, Head->Dst, Head->Src); in Ip4Output()
319 if (CacheEntry == NULL) { in Ip4Output()
320 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src); in Ip4Output()
324 if (CacheEntry == NULL) { in Ip4Output()
328 GateWay = CacheEntry->NextHop; in Ip4Output()
329 Ip4FreeRouteCacheEntry (CacheEntry); in Ip4Output()
DIp4Icmp.c105 IP4_ROUTE_CACHE_ENTRY *CacheEntry; in Ip4ProcessIcmpRedirect() local
140 CacheEntry = Ip4FindRouteCache (Ip4Instance->RouteTable, Dst, Src); in Ip4ProcessIcmpRedirect()
146 if ((CacheEntry != NULL) && (NTOHL (Head->Src) == CacheEntry->NextHop)) { in Ip4ProcessIcmpRedirect()
147 CacheEntry->NextHop = Gateway; in Ip4ProcessIcmpRedirect()