Home | History | Annotate | Download | only in dns

Lines Matching refs:qtype

40                 uint16 qtype,
43 : query_(new DnsQuery(id, DomainFromDot(dotted_name), qtype)),
223 uint16 qtype,
226 qtype_(qtype),
283 EXPECT_EQ(qtype_, response->qtype());
364 // Add expected query for |dotted_name| and |qtype| with |id| and response
369 uint16 qtype,
376 new DnsSocketData(id, dotted_name, qtype, mode, use_tcp));
383 uint16 qtype,
386 AddQueryAndResponse(id, dotted_name, qtype, data, data_length, ASYNC,
392 uint16 qtype,
395 AddQueryAndResponse(id, dotted_name, qtype, data, data_length, SYNCHRONOUS,
399 // Add expected query of |dotted_name| and |qtype| and no response.
400 void AddQueryAndTimeout(const char* dotted_name, uint16 qtype) {
403 new DnsSocketData(id, dotted_name, qtype, ASYNC, false));
407 // Add expected query of |dotted_name| and |qtype| and matching response with
410 uint16 qtype,
417 new DnsSocketData(id, dotted_name, qtype, mode, use_tcp));
422 void AddAsyncQueryAndRcode(const char* dotted_name, uint16 qtype, int rcode) {
423 AddQueryAndRcode(dotted_name, qtype, rcode, ASYNC, false);
426 void AddSyncQueryAndRcode(const char* dotted_name, uint16 qtype, int rcode) {
427 AddQueryAndRcode(dotted_name, qtype, rcode, SYNCHRONOUS, false);