Home | History | Annotate | Download | only in dns_fuzz_stub

Lines Matching defs:qtype

50                   uint16* id, std::string* qname, uint16* qtype,
96 if (!dict->GetInteger("qtype", &qtype_int)) {
97 LOG(ERROR) << filename << ": qtype is missing or not an integer.";
101 LOG(ERROR) << filename << ": qtype is out of range.";
104 *qtype = static_cast<uint16>(qtype_int);
131 << "qtype=" << qtype_int << ", "
137 void RunTestCase(uint16 id, std::string& qname, uint16 qtype,
139 net::DnsQuery query(id, qname, qtype);
170 uint16 qtype = 0;
177 if (!ReadTestCase(filename, &id, &qname, &qtype, &resp_buf, &crash_test))
195 RunTestCase(id, qname_dns, qtype, resp_buf);