Home
last modified time | relevance | path

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

/openthread-latest/src/core/thread/
Daddress_resolver.hpp71 class CacheEntry;
85 …const CacheEntry *GetEntry(void) const { return static_cast<const CacheEntry *>(mData[kEntryIn… in GetEntry()
86 void SetEntry(const CacheEntry *aEntry) { mData[kEntryIndex] = aEntry; } in SetEntry()
242 class CacheEntry : public InstanceLocatorInit class in ot::AddressResolver
247 CacheEntry *GetNext(void);
248 const CacheEntry *GetNext(void) const;
249 void SetNext(CacheEntry *aEntry);
316 typedef Pool<CacheEntry, kCacheEntries> CacheEntryPool;
318 class CacheEntryList : public LinkedList<CacheEntry>
346CacheEntry *FindCacheEntry(const Ip6::Address &aEid, CacheEntryList *&aList, CacheEntry *&aPrevEnt…
[all …]
Daddress_resolver.cpp62 CacheEntry *entry; in Clear()
80 const CacheEntry *entry = aIterator.GetEntry(); in GetNextCacheEntry()
161 AddressResolver::CacheEntry *AddressResolver::GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aLis… in GetEntryAfter()
172 CacheEntry *prev = nullptr; in Remove()
173 CacheEntry *entry; in Remove()
194 AddressResolver::CacheEntry *AddressResolver::FindCacheEntry(const Ip6::Address &aEid, in FindCacheEntry()
196 CacheEntry *&aPrevEntry) in FindCacheEntry()
198 CacheEntry *entry = nullptr; in FindCacheEntry()
216 CacheEntry *entry; in Remove()
217 CacheEntry *prev; in Remove()
[all …]
/openthread-latest/src/core/net/
Dmdns.hpp1457 class CacheEntry;
1464 friend class CacheEntry;
1532 void UpdateQueryAndFireTimeOn(CacheEntry &aCacheEntry);
1552 class CacheEntry : public FireTime, public InstanceLocatorInit, private NonCopyable class in ot::Dns::Multicast::Core
1618 …class BrowseCache : public CacheEntry, public LinkedListEntry<BrowseCache>, public Heap::Allocatab…
1622 friend class CacheEntry;
1688 class ServiceCache : public CacheEntry
1694 friend class CacheEntry;
1724 friend class CacheEntry;
1763 friend class CacheEntry;
[all …]
Dmdns.cpp4732 void Core::CacheRecordInfo::UpdateQueryAndFireTimeOn(CacheEntry &aCacheEntry) in UpdateQueryAndFireTimeOn()
4816 void Core::CacheEntry::Init(Instance &aInstance, Type aType) in Init()
4828 void Core::CacheEntry::SetIsActive(bool aIsActive) in SetIsActive()
4847 bool Core::CacheEntry::ShouldDelete(TimeMilli aNow) const { return !mIsActive && (mDeleteTime <= aN… in ShouldDelete()
4849 void Core::CacheEntry::StartInitialQueries(void) in StartInitialQueries()
4858 bool Core::CacheEntry::ShouldQuery(TimeMilli aNow) { return mQueryPending && (mNextQueryTime <= aNo… in ShouldQuery()
4860 void Core::CacheEntry::ScheduleQuery(TimeMilli aQueryTime) in ScheduleQuery()
4882 Error Core::CacheEntry::Add(const ResultCallback &aCallback) in Add()
4958 void Core::CacheEntry::Remove(const ResultCallback &aCallback) in Remove()
4977 void Core::CacheEntry::ClearEmptyCallbacks(void) in ClearEmptyCallbacks()
[all …]