Lines Matching defs:source
43 str_totext(const char *source, isc_buffer_t *target);
51 isc_hex_totext(isc_region_t *source, int wordlength,
61 while (source->length > 0) {
62 buf[0] = hex[(source->base[0] >> 4) & 0xf];
63 buf[1] = hex[(source->base[0]) & 0xf];
65 isc_region_consume(source, 1);
68 if (source->length != 0 &&
176 str_totext(const char *source, isc_buffer_t *target) {
181 l = strlen(source);
186 memmove(region.base, source, l);