Lines Matching defs:ascii_buf
279 char *ascii_buf, *bufp;
284 ascii_buf = kmalloc(asciiblob_len + 1, GFP_KERNEL);
285 if (!ascii_buf)
288 ascii_buf[asciiblob_len] = '\0';
291 len = sprintf(ascii_buf, "%s %s %s ", epayload->format,
295 bufp = &ascii_buf[len];
299 return ascii_buf;
941 char *ascii_buf;
971 ascii_buf = datablob_format(epayload, asciiblob_len);
972 if (!ascii_buf) {
981 memcpy(buffer, ascii_buf, asciiblob_len);
982 kfree_sensitive(ascii_buf);