Home
last modified time | relevance | path

Searched refs:ARES_SECTION_ANSWER (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/cares/src/lib/
Dares_parse_mx_reply.c56 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_mx_reply()
61 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_mx_reply()
63 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_mx_reply()
Dares_parse_uri_reply.c56 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_uri_reply()
61 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_uri_reply()
63 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_uri_reply()
Dares_parse_srv_reply.c56 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_srv_reply()
61 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_srv_reply()
63 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_srv_reply()
Dares_parse_soa_reply.c54 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_soa_reply()
59 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_soa_reply()
61 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_soa_reply()
Dares_parse_caa_reply.c56 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_caa_reply()
61 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_caa_reply()
65 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_caa_reply()
Dares_parse_txt_reply.c49 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares__parse_txt_reply()
54 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares__parse_txt_reply()
56 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares__parse_txt_reply()
Dares_parse_naptr_reply.c55 if (ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER) == 0) { in ares_parse_naptr_reply()
60 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); i++) { in ares_parse_naptr_reply()
62 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_naptr_reply()
Dares_parse_ns_reply.c67 ancount = ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); in ares_parse_ns_reply()
112 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_ns_reply()
Dares__parse_into_addrinfo.c77 ancount = ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); in ares__parse_into_addrinfo()
86 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares__parse_into_addrinfo()
Dares_parse_ptr_reply.c73 ancount = ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER); in ares_parse_ptr_reply()
117 ares_dns_record_rr_get(dnsrec, ARES_SECTION_ANSWER, i); in ares_parse_ptr_reply()
Dares_dns_record.c311 case ARES_SECTION_ANSWER: in ares_dns_record_rr_cnt()
334 case ARES_SECTION_ANSWER: in ares_dns_record_rr_prealloc()
389 case ARES_SECTION_ANSWER: in ares_dns_record_rr_add()
440 case ARES_SECTION_ANSWER: in ares_dns_record_rr_del()
481 case ARES_SECTION_ANSWER: in ares_dns_record_rr_get()
Dares_dns_mapping.c154 case ARES_SECTION_ANSWER: in ares_dns_section_isvalid()
677 case ARES_SECTION_ANSWER: in ares_dns_section_tostr()
Dares_dns_parse.c853 ares_dns_record_rr_prealloc(*dnsrec, ARES_SECTION_ANSWER, *ancount); in ares_dns_parse_header()
1070 if (sect == ARES_SECTION_ANSWER && in ares_dns_parse_rr()
1199 status = ares_dns_parse_rr(buf, flags, ARES_SECTION_ANSWER, *dnsrec); in ares_dns_parse_buf()
Dares_qcache.c240 for (sect = ARES_SECTION_ANSWER; sect <= ARES_SECTION_ADDITIONAL; sect++) { in ares__qcache_calc_minttl()
Dares_dns_write.c1020 status = ares_dns_write_rr(dnsrec, &namelist, ARES_SECTION_ANSWER, b); in ares_dns_write()
/third_party/node/deps/cares/src/tools/
Dadig.c289 (unsigned int)ares_dns_record_rr_cnt(dnsrec, ARES_SECTION_ANSWER), in print_header()
772 print_section(dnsrec, ARES_SECTION_ANSWER); in callback()
/third_party/node/deps/cares/include/
Dares_dns_record.h85 ARES_SECTION_ANSWER = 1, /*!< Answer section */ enumerator