Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:CacheGroup

535 typedef struct CacheGroup_struct CacheGroup;
983 // Note that since CacheRecord object and a CacheGroup object are allocated out of the same pool, it's sensible to
1652 // the size of the namestorage array in CacheGroup_struct so that sizeof(CacheGroup) == sizeof(CacheRecord)
1655 CacheGroup *next;
1664 CacheGroup *next; // Next CacheGroup object in this hash table bucket
1672 // Storage sufficient to hold either a CacheGroup header or a CacheRecord
1675 union CacheEntity_union { CacheEntity *next; CacheGroup cg; CacheRecord cr; };
2444 CacheGroup *rrcache_hash[CACHE_HASH_SLOTS];
3548 extern CacheRecord *CreateNewCacheEntryEx(mDNS *m, mDNSu32 slot, CacheGroup *cg, mDNSs32 delay, mDNSBool add,
3550 extern CacheRecord *CreateNewCacheEntry(mDNS *const m, const mDNSu32 slot, CacheGroup *cg, mDNSs32 delay, mDNSBool Add, const mDNSAddr *sourceAddress);
3551 extern CacheGroup *CacheGroupForName(const mDNS *const m, const mDNSu32 namehash, const domainname *const name);
3570 extern CacheRecord *mDNSGetTSRForCacheGroup(const CacheGroup *const cg);
3815 char assertC[(sizeof(CacheRecord ) == sizeof(CacheGroup) ) ? 1 : -1];
3838 char sizecheck_CacheGroup [(sizeof(CacheGroup) <= 224) ? 1 : -1];