Home
last modified time | relevance | path

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

/openthread-3.4.0/src/core/thread/
Daddress_resolver.hpp73 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()
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.cpp71 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in Clear()
73 for (CacheEntryList *list : lists) in Clear()
92 const CacheEntryList *list = aIterator.GetList(); in GetNextCacheEntry()
173 AddressResolver::CacheEntry *AddressResolver::GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aLis… in GetEntryAfter()
180 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList}; in Remove()
182 for (CacheEntryList *list : lists) in Remove()
207 CacheEntryList *&aList, in FindCacheEntry()
211 CacheEntryList *lists[] = {&mCachedList, &mSnoopedList, &mQueryList, &mQueryRetryList}; in FindCacheEntry()
213 for (CacheEntryList *list : lists) in FindCacheEntry()
230 CacheEntryList *list; in Remove()
[all …]