Home | History | Annotate | Download | only in dns_responder

Lines Matching refs:qtype

232     unsigned qtype;
249 qtype = ntohs(*reinterpret_cast<const uint16_t*>(cur));
261 *reinterpret_cast<uint16_t*>(buffer_cur) = htons(qtype);
270 dnstype2str(qtype), dnsclass2str(qclass));
758 ns_type(question.qtype)));
793 auto it = mappings_.find(QueryKey(question.qname.name, question.qtype));
797 question.qname.name.c_str(), dnstype2str(question.qtype));
801 dnstype2str(question.qtype), it->second.c_str());
804 record.rtype = question.qtype;
807 if (question.qtype == ns_type::ns_t_a) {
813 } else if (question.qtype == ns_type::ns_t_aaaa) {
820 ALOGI("unhandled qtype %s", dnstype2str(question.qtype));