hex_buffer        668 lib/util/util.c 	char *hex_buffer;
hex_buffer        671 lib/util/util.c 	hex_buffer = *out_hex_buffer;
hex_buffer        674 lib/util/util.c 		slprintf(&hex_buffer[i*2], 3, "%02X", buff_in[i]);
hex_buffer        683 lib/util/util.c 	char *hex_buffer;
hex_buffer        685 lib/util/util.c 	hex_buffer = talloc_array(mem_ctx, char, (len*2)+1);
hex_buffer        686 lib/util/util.c 	if (!hex_buffer) {
hex_buffer        691 lib/util/util.c 		slprintf(&hex_buffer[i*2], 3, "%02X", buff_in[i]);
hex_buffer        693 lib/util/util.c 	talloc_set_name_const(hex_buffer, hex_buffer);
hex_buffer        694 lib/util/util.c 	return hex_buffer;