Lines Matching refs:rr
334 } rr; in get_txt_records() local
395 rr.type = ns_get16(cp); in get_txt_records()
397 rr.class = ns_get16(cp); in get_txt_records()
399 rr.dlen = ns_get16(cp); in get_txt_records()
401 if (rr.dlen == 0 || cp + rr.dlen > eom) { in get_txt_records()
405 rr.data = cp; in get_txt_records()
406 cp += rr.dlen; in get_txt_records()
407 if (rr.class != class || rr.type != T_TXT) in get_txt_records()
409 if (!(list[j] = malloc(rr.dlen))) in get_txt_records()
412 edst = dst + rr.dlen; in get_txt_records()
413 erdata = rr.data + rr.dlen; in get_txt_records()
414 cp = rr.data; in get_txt_records()