Lines Matching full:uint16
86 static bool DnsRRIsParsedByWindows(uint16 rrtype) {
101 static const uint16 kClassIN = 1;
148 RRResolverWorker(const std::string& name, uint16 rrtype, uint16 flags,
403 const uint16 rrtype_;
404 const uint16 flags_;
437 bool U16(uint16* v) {
440 *v = static_cast<uint16>(p_[0]) << 8 |
441 static_cast<uint16>(p_[1]);
501 uint16 offset = static_cast<uint16>(d) << 8 |
502 static_cast<uint16>(p[0]);
560 uint16 rrtype_requested) {
591 uint16 query_count, answer_count, authority_count, additional_count;
602 uint16 type, klass;
619 uint16 rrdata_len;
701 intptr_t DnsRRResolver::Resolve(const std::string& name, uint16 rrtype,
702 uint16 flags, CompletionCallback* callback,
718 const std::pair<std::string, uint16> key(make_pair(name, rrtype));
720 std::map<std::pair<std::string, uint16>, RRResponse>::iterator i;
749 std::map<std::pair<std::string, uint16>, RRResolverJob*>::const_iterator j;
783 std::map<std::pair<std::string, uint16>, RRResolverJob*> inflight;
791 void DnsRRResolver::HandleResult(const std::string& name, uint16 rrtype,
795 const std::pair<std::string, uint16> key(std::make_pair(name, rrtype));
802 std::map<std::pair<std::string, uint16>, RRResponse>::iterator i, cur;
817 std::map<std::pair<std::string, uint16>, RRResolverJob*>::iterator j;