Lines Matching defs:storage
212 AuthEntity *storage = mDNSPlatformMemAllocate(sizeof(AuthEntity));
213 storage->next = mDNSNULL;
214 r->rrauth_free = storage;
285 LogMsg("GetAuthGroup: Failed to allocate name storage for %##s", rr->name->c);
4827 r->resrec.rdata = (RData*)&r->smallrdatastorage; // By default, assume we're usually going to be using local storage
4828 if (RDLength > InlineCacheRDSize) // If RDLength is too big, allocate extra storage
4853 LogMsg("GetCacheGroup: Failed to allocate name storage for %##s", rr->name->c);
7916 // Certain data types need more space for in-memory storage than their in-packet rdlength would imply
7961 // If this is an oversized record with external storage allocated, copy rdata to external storage
13236 // If the optional target host parameter is set, then the storage it points to must remain valid for the lifetime of the service registration
14152 mDNSlocal void mDNS_GrowCache_internal(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords)
14154 if (storage && numrecords)
14157 debugf("Adding cache storage for %d more records (%d bytes)", numrecords, numrecords*sizeof(CacheEntity));
14158 for (i=0; i<numrecords; i++) storage[i].next = &storage[i+1];
14159 storage[numrecords-1].next = m->rrcache_free;
14160 m->rrcache_free = storage;
14165 mDNSexport void mDNS_GrowCache(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords)
14168 mDNS_GrowCache_internal(m, storage, numrecords);