Home
last modified time | relevance | path

Searched refs:outbufsize (Results 1 – 3 of 3) sorted by relevance

/external/e2fsprogs/e2fsck/
Dlogfile.c180 static int outbufsize; variable
193 n = realloc(outbuf, outbufsize + c); in do_read()
196 memcpy(((char *)outbuf)+outbufsize, buffer, c); in do_read()
197 outbufsize += c; in do_read()
262 while (outbufsize > 0) { in save_output()
263 c = write(fd, cp, outbufsize); in save_output()
269 outbufsize -= c; in save_output()
/external/e2fsprogs/misc/
Dlogsave.c35 static int outbufsize = 0; variable
108 n = realloc(outbuf, outbufsize + c); in send_output()
111 memcpy(((char *)outbuf)+outbufsize, buffer, c); in send_output()
112 outbufsize += c; in send_output()
326 write_all(outfd, outbuf, outbufsize); in main()
/external/vboot_reference/host/lib/
Dhost_signature.c168 uint64_t outbufsize, in InvokeExternalSigner() argument
202 n = read(c_to_p[STDIN_FILENO], outbuf, outbufsize); in InvokeExternalSigner()
204 outbufsize -= n; in InvokeExternalSigner()
205 } while (n > 0 && outbufsize); in InvokeExternalSigner()