Searched refs:InlineCacheRDSize (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNSEmbeddedAPI.h1008 // InlineCacheRDSize is 68
1020 #define InlineCacheRDSize 68 macro
1067 mDNSu16 MaxRDLength; // Storage allocated for data (may be greater than InlineCacheRDSize if additional storage follows this object)
1069 mDNSu8 data[InlineCacheRDSize];
1696 mDNSu8 _extradata[MaximumRDSize-InlineCacheRDSize]; // Glue on the necessary number of extra bytes
3086 // are InlineCacheRDSize or less, then you can just make a simple mDNSPlatformMemAllocate() stub that always returns
3087 // NULL. InlineCacheRDSize is a compile-time constant, which is set by default to 68. If you need to handle records
H A DmDNS.c4897 if (RDLength > InlineCacheRDSize) // If RDLength is too big, allocate extra storage
7935 //if (RDLength > InlineCacheRDSize)
7936 // LogInfo("Rdata len %4d > InlineCacheRDSize %d %s", RDLength, InlineCacheRDSize, CRDisplayString(m, &m->rec.r));
7960 if (rr->resrec.rdata == (RData*)&rr->smallrdatastorage && RDLength > InlineCacheRDSize)
7961 LogMsg("rr->resrec.rdata == &rr->rdatastorage but length > InlineCacheRDSize %##s", m->rec.r.resrec.name->c);
7962 else if (rr->resrec.rdata != (RData*)&rr->smallrdatastorage && RDLength <= InlineCacheRDSize)
7963 LogMsg("rr->resrec.rdata != &rr->rdatastorage but length <= InlineCacheRDSize %##s", m->rec.r.resrec.name->c);
7964 if (RDLength > InlineCacheRDSize)
8518 if (m->rec.r.resrec.rdlength > InlineCacheRDSize)
[all...]

Completed in 117 milliseconds