Lines Matching refs:sr
45 isc_region_t sr; in totext_keydata() local
58 dns_rdata_toregion(rdata, &sr); in totext_keydata()
61 refresh = uint32_fromregion(&sr); in totext_keydata()
62 isc_region_consume(&sr, 4); in totext_keydata()
67 add = uint32_fromregion(&sr); in totext_keydata()
68 isc_region_consume(&sr, 4); in totext_keydata()
73 deltime = uint32_fromregion(&sr); in totext_keydata()
74 isc_region_consume(&sr, 4); in totext_keydata()
79 flags = uint16_fromregion(&sr); in totext_keydata()
80 isc_region_consume(&sr, 2); in totext_keydata()
93 snprintf(buf, sizeof(buf), "%u", sr.base[0]); in totext_keydata()
94 isc_region_consume(&sr, 1); in totext_keydata()
99 algorithm = sr.base[0]; in totext_keydata()
101 isc_region_consume(&sr, 1); in totext_keydata()
113 RETERR(isc_base64_totext(&sr, 60, "", target)); in totext_keydata()
115 RETERR(isc_base64_totext(&sr, tctx->width - 2, in totext_keydata()
196 isc_region_t sr; in fromwire_keydata() local
205 isc_buffer_activeregion(source, &sr); in fromwire_keydata()
206 isc_buffer_forward(source, sr.length); in fromwire_keydata()
207 return (isc_mem_tobuffer(target, sr.base, sr.length)); in fromwire_keydata()
212 isc_region_t sr; in towire_keydata() local
218 dns_rdata_toregion(rdata, &sr); in towire_keydata()
219 return (isc_mem_tobuffer(target, sr.base, sr.length)); in towire_keydata()