Lines Matching defs:storage
208 AuthEntity *storage = mDNSPlatformMemAllocate(sizeof(AuthEntity));
209 storage->next = mDNSNULL;
210 r->rrauth_free = storage;
281 LogMsg("GetAuthGroup: Failed to allocate name storage for %##s", rr->name->c);
4896 r->resrec.rdata = (RData*)&r->smallrdatastorage; // By default, assume we're usually going to be using local storage
4897 if (RDLength > InlineCacheRDSize) // If RDLength is too big, allocate extra storage
4922 LogMsg("GetCacheGroup: Failed to allocate name storage for %##s", rr->name->c);
7914 // Certain data types need more space for in-memory storage than their in-packet rdlength would imply
7959 // If this is an oversized record with external storage allocated, copy rdata to external storage
13288 // If the optional target host parameter is set, then the storage it points to must remain valid for the lifetime of the service registration
14204 mDNSlocal void mDNS_GrowCache_internal(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords)
14206 if (storage && numrecords)
14209 debugf("Adding cache storage for %d more records (%d bytes)", numrecords, numrecords*sizeof(CacheEntity));
14210 for (i=0; i<numrecords; i++) storage[i].next = &storage[i+1];
14211 storage[numrecords-1].next = m->rrcache_free;
14212 m->rrcache_free = storage;
14217 mDNSexport void mDNS_GrowCache(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords)
14220 mDNS_GrowCache_internal(m, storage, numrecords);