Searched refs:outbufsize (Results 1 – 2 of 2) sorted by relevance
/third_party/e2fsprogs/e2fsck/ |
D | logfile.c | 183 static int outbufsize; variable 196 n = realloc(outbuf, outbufsize + c); in do_read() 199 memcpy(((char *)outbuf)+outbufsize, buffer, c); in do_read() 200 outbufsize += c; in do_read() 267 while (outbufsize > 0) { in save_output() 268 c = write(fd, cp, outbufsize); in save_output() 274 outbufsize -= c; in save_output()
|
/third_party/e2fsprogs/misc/ |
D | logsave.c | 36 static int outbufsize = 0; variable 109 n = realloc(outbuf, outbufsize + c); in send_output() 112 memcpy(((char *)outbuf)+outbufsize, buffer, c); in send_output() 113 outbufsize += c; in send_output() 327 write_all(outfd, outbuf, outbufsize); in main()
|