Searched refs:RDataBody (Results 1 - 8 of 8) sorted by relevance

/external/mdnsresponder/mDNSPosix/
H A DResponder.c238 static mDNSu8 gServiceText[sizeof(RDataBody)];
520 mDNSu8 text[sizeof(RDataBody)];
H A DNetMonitor.c284 RDataBody *rd = &pktrr->rdata->u;
510 RDataBody *rd = &pktrr->rdata->u;
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.h163 extern mDNSBool SameRDataBody(const ResourceRecord *const r1, const RDataBody *const r2, DomainNameComparisonFn *samename);
H A DmDNSEmbeddedAPI.h833 // The RDataBody union defines the common rdata types that fit into our 264-byte limit
843 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
845 } RDataBody; typedef in typeref:union:__anon26798
853 rdataSOA soa; // This is large; not included in the normal RDataBody definition
856 rdataRP rp; // This is large; not included in the normal RDataBody definition
857 rdataPX px; // This is large; not included in the normal RDataBody definition
860 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
866 mDNSu16 MaxRDLength; // Amount of storage allocated for rdata (usually sizeof(RDataBody))
867 mDNSu16 padding; // So that RDataBody is aligned on 32-bit boundary
868 RDataBody
[all...]
H A DDNSCommon.c172 // the rdata from the RDataBody object. Sometimes this could be the wrong length -- but as
174 mDNSexport char *GetRRDisplayString_rdb(const ResourceRecord *const rr, const RDataBody *const rd1, char *const buffer)
1040 rr->resrec.rdata->MaxRDLength = sizeof(RDataBody);
1164 // r2 is just a bare RDataBody, which MUST be the same rrtype and rdlength as r1
1165 mDNSexport mDNSBool SameRDataBody(const ResourceRecord *const r1, const RDataBody *const r2, DomainNameComparisonFn *samename)
2474 // Note: An OPT RDataBody actually contains one or more variable-length rdataOPT objects packed together
H A DmDNS.c7316 AuthRecord *ar = mDNSPlatformMemAllocate(sizeof(AuthRecord) - sizeof(RDataBody) + RDLengthMem);
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientshim.c228 unsigned int size = sizeof(RDataBody);
248 x = (mDNS_DirectOP_Register *)mDNSPlatformMemAllocate(sizeof(*x) - sizeof(RDataBody) + size);
H A Duds_daemon.c497 int storage_size = rdlen > sizeof(RDataBody) ? rdlen : sizeof(RDataBody);
516 rr = mallocL("AuthRecord/read_rr_from_ipc_msg", sizeof(AuthRecord) - sizeof(RDataBody) + storage_size);
1095 int size = rdlen > sizeof(RDataBody) ? rdlen : sizeof(RDataBody);
1096 ExtraResourceRecord *extra = mallocL("ExtraResourceRecord", sizeof(*extra) - sizeof(RDataBody) + size);
1186 const int rdsize = rdlen > sizeof(RDataBody) ? rdlen : sizeof(RDataBody);
1187 RData *newrd = mallocL("RData/update_record", sizeof(RData) - sizeof(RDataBody) + rdsize);
1441 const int extra_size = (request->u.servicereg.txtlen > sizeof(RDataBody))
[all...]

Completed in 1163 milliseconds