Searched refs:CacheEntryList (Results 1 – 2 of 2) sorted by relevance
/openthread-3.5.0/src/core/thread/ |
D | address_resolver.hpp | 73 class CacheEntryList; 89 …const CacheEntryList *GetList(void) const { return static_cast<const CacheEntryList *>(mData[kList… in GetList() 90 void SetList(const CacheEntryList *aList) { mData[kListIndex] = aList; } in SetList() 322 class CacheEntryList : public LinkedList<CacheEntry> class in ot::AddressResolver 350 …CacheEntry *FindCacheEntry(const Ip6::Address &aEid, CacheEntryList *&aList, CacheEntry *&aPrevEnt… 352 …void RemoveCacheEntry(CacheEntry &aEntry, CacheEntryList &aList, CacheEntry *aPrevEntry, Re… 379 CacheEntryList *aList = nullptr); 380 const char *ListToString(const CacheEntryList *aList) const; 382 static AddressResolver::CacheEntry *GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aList); 385 CacheEntryList mCachedList; [all …]
|
D | address_resolver.cpp | 71 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in Clear() 73 for (CacheEntryList *list : lists) in Clear() 92 const CacheEntryList *list = aIterator.GetList(); in GetNextCacheEntry() 174 AddressResolver::CacheEntry *AddressResolver::GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aLis… in GetEntryAfter() 181 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList}; in Remove() 183 for (CacheEntryList *list : lists) in Remove() 208 CacheEntryList *&aList, in FindCacheEntry() 212 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in FindCacheEntry() 214 for (CacheEntryList *list : lists) in FindCacheEntry() 231 CacheEntryList *list; in Remove() [all …]
|