Lines Matching defs:ascii_buf
274 char *ascii_buf, *bufp;
279 ascii_buf = kmalloc(asciiblob_len + 1, GFP_KERNEL);
280 if (!ascii_buf)
283 ascii_buf[asciiblob_len] = '\0';
286 len = sprintf(ascii_buf, "%s %s %s ", epayload->format,
290 bufp = &ascii_buf[len];
294 return ascii_buf;
913 char *ascii_buf;
943 ascii_buf = datablob_format(epayload, asciiblob_len);
944 if (!ascii_buf) {
953 memcpy(buffer, ascii_buf, asciiblob_len);
954 kfree_sensitive(ascii_buf);