Searched refs:CacheEntry (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/src/core/thread/ |
D | address_resolver.hpp | 72 class CacheEntry; 87 …const CacheEntry *GetEntry(void) const { return static_cast<const CacheEntry *>(mData[kEntryIn… in GetEntry() 88 void SetEntry(const CacheEntry *aEntry) { mData[kEntryIndex] = aEntry; } in SetEntry() 258 class CacheEntry : public InstanceLocatorInit class in ot::AddressResolver 263 CacheEntry *GetNext(void); 264 const CacheEntry *GetNext(void) const; 265 void SetNext(CacheEntry *aEntry); 332 typedef Pool<CacheEntry, kCacheEntries> CacheEntryPool; 334 class CacheEntryList : public LinkedList<CacheEntry> 362 …CacheEntry *FindCacheEntry(const Ip6::Address &aEid, CacheEntryList *&aList, CacheEntry *&aPrevEnt… [all …]
|
D | address_resolver.cpp | 75 CacheEntry *entry; in Clear() 93 const CacheEntry *entry = aIterator.GetEntry(); in GetNextCacheEntry() 174 AddressResolver::CacheEntry *AddressResolver::GetEntryAfter(CacheEntry *aPrev, CacheEntryList &aLis… in GetEntryAfter() 185 CacheEntry *prev = nullptr; in Remove() 186 CacheEntry *entry; in Remove() 207 AddressResolver::CacheEntry *AddressResolver::FindCacheEntry(const Ip6::Address &aEid, in FindCacheEntry() 209 CacheEntry *&aPrevEntry) in FindCacheEntry() 211 CacheEntry *entry = nullptr; in FindCacheEntry() 229 CacheEntry *entry; in Remove() 230 CacheEntry *prev; in Remove() [all …]
|
/openthread-latest/src/core/net/ |
D | mdns.hpp | 1482 class CacheEntry; 1489 friend class CacheEntry; 1561 void UpdateQueryAndFireTimeOn(CacheEntry &aCacheEntry); 1581 class CacheEntry : public FireTime, public InstanceLocatorInit, private NonCopyable class in ot::Dns::Multicast::Core 1647 …class BrowseCache : public CacheEntry, public LinkedListEntry<BrowseCache>, public Heap::Allocatab… 1651 friend class CacheEntry; 1717 class ServiceCache : public CacheEntry 1723 friend class CacheEntry; 1753 friend class CacheEntry; 1792 friend class CacheEntry; [all …]
|
D | mdns.cpp | 4571 void Core::CacheRecordInfo::UpdateQueryAndFireTimeOn(CacheEntry &aCacheEntry) in UpdateQueryAndFireTimeOn() 4655 void Core::CacheEntry::Init(Instance &aInstance, Type aType) in Init() 4667 void Core::CacheEntry::SetIsActive(bool aIsActive) in SetIsActive() 4686 bool Core::CacheEntry::ShouldDelete(TimeMilli aNow) const { return !mIsActive && (mDeleteTime <= aN… in ShouldDelete() 4688 void Core::CacheEntry::StartInitialQueries(void) in StartInitialQueries() 4697 bool Core::CacheEntry::ShouldQuery(TimeMilli aNow) { return mQueryPending && (mNextQueryTime <= aNo… in ShouldQuery() 4699 void Core::CacheEntry::ScheduleQuery(TimeMilli aQueryTime) in ScheduleQuery() 4721 Error Core::CacheEntry::Add(const ResultCallback &aCallback) in Add() 4797 void Core::CacheEntry::Remove(const ResultCallback &aCallback) in Remove() 4816 void Core::CacheEntry::ClearEmptyCallbacks(void) in ClearEmptyCallbacks() [all …]
|