Lines Matching defs:source
34 str_totext(const char *source, isc_buffer_t *target);
42 isc_hex_totext(isc_region_t *source, int wordlength,
52 while (source->length > 0) {
53 buf[0] = hex[(source->base[0] >> 4) & 0xf];
54 buf[1] = hex[(source->base[0]) & 0xf];
56 isc_region_consume(source, 1);
59 if (source->length != 0 &&
167 str_totext(const char *source, isc_buffer_t *target) {
172 l = strlen(source);
177 memmove(region.base, source, l);