Lines Matching defs:outbuf
32 char *b64encoded = NULL, *outbuf = NULL;
51 outbuf = talloc_array(mem_ctx, char, b64size+1);
52 if (outbuf == NULL) goto done;
58 outbuf[j++] = b64encoded[i];
60 outbuf[j++] = '\0';
65 return outbuf;
72 unsigned char *outbuf = NULL;
116 outbuf = talloc_memdup(mem_ctx, b64decoded, size);
117 if (!outbuf) {
132 return outbuf;