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

  /src/external/apache2/mDNSResponder/dist/mDNSCore/
DNSCommon.h 308 extern mDNSBool SameRDataBody(const ResourceRecord *const r1, const RDataBody *const r2, DomainNameComparisonFn *samename);
357 extern mDNSBool SameRDataBody(const ResourceRecord *const r1, const RDataBody *const r2, DomainNameComparisonFn *samename);
mDNSEmbeddedAPI.h 987 // The RDataBody union defines the common rdata types that fit into our 264-byte limit
998 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
999 } RDataBody;
1007 rdataSOA soa; // This is large; not included in the normal RDataBody definition
1010 rdataRP rp; // This is large; not included in the normal RDataBody definition
1011 rdataPX px; // This is large; not included in the normal RDataBody definition
1015 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
1020 mDNSu16 MaxRDLength; // Amount of storage allocated for rdata (usually sizeof(RDataBody))
1021 mDNSu16 padding; // So that RDataBody is aligned on 32-bit boundary
1022 RDataBody u
    [all...]
DNSCommon.c 493 // the rdata from the RDataBody object. Sometimes this could be the wrong length -- but as
495 mDNSexport char *GetRRDisplayString_rdb(const ResourceRecord *const rr, const RDataBody *const rd1, char *const buffer)
1777 rr->resrec.rdata->MaxRDLength = sizeof(RDataBody);
1922 // r2 is just a bare RDataBody, which MUST be the same rrtype and rdlength as r1
1923 mDNSexport mDNSBool SameRDataBody(const ResourceRecord *const r1, const RDataBody *const r2, DomainNameComparisonFn *samename)
4147 // Note: An OPT RDataBody actually contains one or more variable-length rdataOPT objects packed together
mDNS.c 2166 RData rdatastorage = {sizeof(RDataBody), 0, {0}};
7486 rdsize = newrdlength > sizeof(RDataBody) ? newrdlength : sizeof(RDataBody);
7487 newrd = (RData *) mDNSPlatformMemAllocate(sizeof(RData) - sizeof(RDataBody) + rdsize);
13387 AuthRecord *ar = (AuthRecord *) mDNSPlatformMemAllocateClear(sizeof(AuthRecord) - sizeof(RDataBody) + RDLengthMem);
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
uds_daemon.c 1016 rr = (AuthRecord *) callocL("AuthRecord/read_rr_from_ipc_msg", sizeof(*rr) - sizeof(RDataBody) + rdcapacity);
1858 AuthRecord *ar = (AuthRecord *) callocL("AuthRecord/regRecordAddTSRRecord", sizeof(*ar) - sizeof(RDataBody) + rdcapacity);
2157 ExtraResourceRecord *extra = (ExtraResourceRecord *)callocL("ExtraResourceRecord", sizeof(*extra) - sizeof(RDataBody) + rdcapacity);
2291 RData *newrd = (RData *) callocL("RData/update_record", sizeof(*newrd) - sizeof(RDataBody) + rdcapacity);
2687 size_t extra_size = (servicereg->txtlen > sizeof(RDataBody)) ? (servicereg->txtlen - sizeof(RDataBody)) : 0;

Completed in 39 milliseconds