Searched defs:rr (Results 1 - 5 of 5) sorted by relevance
/bionic/libc/dns/nameser/ |
H A D | ns_parse.c | 141 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) { argument 171 handle->_msg_ptr, rr->name, NS_MAXDNAME); 177 NS_GET16(rr->type, handle->_msg_ptr); 178 NS_GET16(rr->rr_class, handle->_msg_ptr); 180 rr->ttl = 0; 181 rr->rdlength = 0; 182 rr->rdata = NULL; 186 NS_GET32(rr->ttl, handle->_msg_ptr); 187 NS_GET16(rr->rdlength, handle->_msg_ptr); 188 if (handle->_msg_ptr + rr 204 ns_parserr2(ns_msg *handle, ns_sect section, int rrnum, ns_rr2 *rr) argument [all...] |
H A D | ns_print.c | 88 ns_sprintrr(const ns_msg *handle, const ns_rr *rr, argument 95 ns_rr_name(*rr), ns_rr_class(*rr), ns_rr_type(*rr), 96 ns_rr_ttl(*rr), ns_rr_rdata(*rr), ns_rr_rdlen(*rr),
|
/bionic/libc/dns/resolv/ |
H A D | res_debug.c | 157 ns_rr rr; local 175 if (ns_parserr(handle, section, rrnum, &rr)) { 189 ns_rr_name(rr), 190 p_type(ns_rr_type(rr)), 191 p_class(ns_rr_class(rr))); 192 else if (section == ns_s_ar && ns_rr_type(rr) == ns_t_opt) { 196 rdatalen = ns_rr_rdlen(rr); 197 ttl = ns_rr_ttl(rr); 200 (ttl>>16)&0xff, ns_rr_class(rr), ttl&0xffff); 202 const u_char *cp = ns_rr_rdata(rr); [all...] |
H A D | res_cache.c | 1016 ns_rr rr; local 1020 if ((ns_parserr(&handle, ns_s_ns, n, &rr) == 0) && (ns_rr_type(rr) == ns_t_soa)) { 1021 const u_char *rdata = ns_rr_rdata(rr); // find the data 1022 const u_char *edata = rdata + ns_rr_rdlen(rr); // add the len to find the end 1024 u_long ttl, rec_result = ns_rr_ttl(rr); 1072 ns_rr rr; local 1084 if (ns_parserr(&handle, ns_s_an, n, &rr) == 0) { 1085 ttl = ns_rr_ttl(rr);
|
/bionic/libc/kernel/uapi/asm-mips/asm/ |
H A D | inst.h | 1040 struct m16e_rr rr; member in union:mips16e_instruction
|
Completed in 145 milliseconds