Lines Matching full:read
24 using BigEndianReader::Read;
27 // read the value to |out| and advances current() to point right past the read
28 // data. Returns false if the method failed to read the value to |out|,
30 bool Read(TxtRecordRdata::Entry* out);
31 bool Read(DomainName* out);
32 bool Read(RawRecordRdata* out);
33 bool Read(SrvRecordRdata* out);
34 bool Read(ARecordRdata* out);
35 bool Read(AAAARecordRdata* out);
36 bool Read(PtrRecordRdata* out);
37 bool Read(TxtRecordRdata* out);
38 bool Read(NsecRecordRdata* out);
41 // The correct type of RDATA to be read is determined by the type
43 bool Read(MdnsRecord* out);
44 bool Read(MdnsQuestion* out);
47 // a mDNS message being read.
48 ErrorOr<MdnsMessage> Read();
57 bool Read(IPAddress::Version version, IPAddress* out);
58 bool Read(DnsType type, Rdata* out);
59 bool Read(Header* out);
60 bool Read(std::vector<DnsType>* types, int remaining_length);
61 bool Read(NsecBitMapField* out);
64 bool Read(uint16_t count, std::vector<ItemType>* out) { in Read() function
69 if (!Read(&entry)) { in Read()
79 bool Read(Rdata* out) { in Read() function
81 if (Read(&rdata)) { in Read()