HomeSort by: relevance | last modified time | path
    Searched refs:InlineCacheRDSize (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 973 // InlineCacheRDSize is 68
985 #define InlineCacheRDSize 68
1031 mDNSu16 MaxRDLength; // Storage allocated for data (may be greater than InlineCacheRDSize if additional storage follows this object)
1033 mDNSu8 data[InlineCacheRDSize];
1680 mDNSu8 _extradata[MaximumRDSize-InlineCacheRDSize]; // Glue on the necessary number of extra bytes
3233 // are InlineCacheRDSize or less, then you can just make a simple mDNSPlatformMemAllocate() stub that always returns
3234 // NULL. InlineCacheRDSize is a compile-time constant, which is set by default to 68. If you need to handle records
mDNS.c 6470 if (RDLength > InlineCacheRDSize) // If RDLength is too big, allocate extra storage
9873 //if (RDLength > InlineCacheRDSize)
9874 // LogInfo("Rdata len %4d > InlineCacheRDSize %d %s", RDLength, InlineCacheRDSize, CRDisplayString(m, &m->rec.r));
9913 if (rr->resrec.rdata == (RData*)&rr->smallrdatastorage && RDLength > InlineCacheRDSize)
9914 LogMsg("rr->resrec.rdata == &rr->rdatastorage but length > InlineCacheRDSize %##s", m->rec.r.resrec.name->c);
9915 else if (rr->resrec.rdata != (RData*)&rr->smallrdatastorage && RDLength <= InlineCacheRDSize)
9916 LogMsg("rr->resrec.rdata != &rr->rdatastorage but length <= InlineCacheRDSize %##s", m->rec.r.resrec.name->c);
9917 if (RDLength > InlineCacheRDSize)
11193 if (m->rec.r.resrec.rdlength > InlineCacheRDSize)
    [all...]

Completed in 30 milliseconds