HomeSort by relevance Sort by last modified time
    Searched refs:outfd (Results 1 - 13 of 13) sorted by null

  /system/extras/ext4_utils/
ext2simg.c 124 int infd, outfd; local
180 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
181 if (outfd < 0) {
186 outfd = STDOUT_FILENO;
189 write_ext4_image(outfd, gzip, sparse, crc);
190 close(outfd);
  /external/e2fsprogs/misc/
logsave.c 34 static int outfd = -1; variable
105 if (outfd > 0)
106 write_all(outfd, buffer, c);
282 outfd = open(outfn, openflags, 0644);
322 while (outfd < 0) {
323 outfd = open(outfn, openflags, 0644);
326 write_all(outfd, outbuf, outbufsize);
329 if (outfd >= 0)
330 close(outfd);