Lines Matching refs:target

43 str_totext(const char *source, isc_buffer_t *target);
46 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length);
57 isc_buffer_t *target, const char base[])
72 RETERR(str_totext(buf, target));
81 RETERR(str_totext(buf, target));
89 RETERR(str_totext(buf, target));
98 RETERR(str_totext(buf, target));
104 RETERR(str_totext(buf, target));
112 RETERR(str_totext(wordbreak, target));
122 const char *wordbreak, isc_buffer_t *target)
124 return (base32_totext(source, wordlength, wordbreak, target, base32));
129 const char *wordbreak, isc_buffer_t *target)
131 return (base32_totext(source, wordlength, wordbreak, target,
140 isc_buffer_t *target; /*%< Buffer for resulting binary data */
150 const char base[], isc_buffer_t *target)
156 ctx->target = target;
233 RETERR(mem_tobuffer(ctx->target, buf, n));
255 base32_tobuffer(isc_lex_t *lexer, const char base[], isc_buffer_t *target,
263 base32_decode_init(&ctx, length, base, target);
287 isc_base32_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) {
288 return (base32_tobuffer(lexer, base32, target, length));
292 isc_base32hex_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) {
293 return (base32_tobuffer(lexer, base32hex, target, length));
297 base32_decodestring(const char *cstr, const char base[], isc_buffer_t *target) {
300 base32_decode_init(&ctx, -1, base, target);
314 isc_base32_decodestring(const char *cstr, isc_buffer_t *target) {
315 return (base32_decodestring(cstr, base32, target));
319 isc_base32hex_decodestring(const char *cstr, isc_buffer_t *target) {
320 return (base32_decodestring(cstr, base32hex, target));
324 base32_decoderegion(isc_region_t *source, const char base[], isc_buffer_t *target) {
327 base32_decode_init(&ctx, -1, base, target);
338 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target) {
339 return (base32_decoderegion(source, base32, target));
343 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target) {
344 return (base32_decoderegion(source, base32hex, target));
348 str_totext(const char *source, isc_buffer_t *target) {
352 isc_buffer_availableregion(target, &region);
359 isc_buffer_add(target, l);
364 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) {
367 isc_buffer_availableregion(target, &tr);
371 isc_buffer_add(target, length);