Home
last modified time | relevance | path

Searched refs:CacheEntryList (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/thread/
Daddress_resolver.hpp72 class CacheEntryList;
87 …const CacheEntryList *GetList(void) const { return static_cast<const CacheEntryList *>(mData[kList… in GetList()
88 void SetList(const CacheEntryList *aList) { mData[kListIndex] = aList; } in SetList()
318 class CacheEntryList : public LinkedList<CacheEntry> class in ot::AddressResolver
346 …CacheEntry *FindCacheEntry(const Ip6::Address &aEid, CacheEntryList *&aList, CacheEntry *&aPrevEnt…
348 …void RemoveCacheEntry(CacheEntry &aEntry, CacheEntryList &aList, CacheEntry *aPrevEntry, Re…
375 CacheEntryList *aList = nullptr);
376 const char *ListToString(const CacheEntryList *aList) const;
378 static AddressResolver::CacheEntry *GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aList);
381 CacheEntryList mCachedList;
[all …]
Daddress_resolver.cpp58 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in Clear()
60 for (CacheEntryList *list : lists) in Clear()
79 const CacheEntryList *list = aIterator.GetList(); in GetNextCacheEntry()
161 AddressResolver::CacheEntry *AddressResolver::GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aLis… in GetEntryAfter()
168 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList}; in Remove()
170 for (CacheEntryList *list : lists) in Remove()
195 CacheEntryList *&aList, in FindCacheEntry()
199 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in FindCacheEntry()
201 for (CacheEntryList *list : lists) in FindCacheEntry()
218 CacheEntryList *list; in Remove()
[all …]