Lines Matching defs:ascii_buf
273 char *ascii_buf, *bufp;
278 ascii_buf = kmalloc(asciiblob_len + 1, GFP_KERNEL);
279 if (!ascii_buf)
282 ascii_buf[asciiblob_len] = '\0';
285 len = sprintf(ascii_buf, "%s %s %s ", epayload->format,
289 bufp = &ascii_buf[len];
293 return ascii_buf;
908 char *ascii_buf;
938 ascii_buf = datablob_format(epayload, asciiblob_len);
939 if (!ascii_buf) {
948 memcpy(buffer, ascii_buf, asciiblob_len);
949 kfree_sensitive(ascii_buf);