Searched refs:outfd (Results 1 - 2 of 2) sorted by relevance

/system/core/toolbox/
H A Dnandread.c28 int outfd = -1; local
109 outfd = creat(filename, 0666);
110 if (outfd < 0) {
241 if (outfd >= 0) {
242 ret = write(outfd, buffer, mtdinfo.writesize + spare_size);
245 close(outfd);
246 outfd = -1;
270 if (outfd >= 0) {
/system/extras/ext4_utils/
H A Dext2simg.c185 int infd, outfd; local
241 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
242 if (outfd < 0) {
247 outfd = STDOUT_FILENO;
250 write_ext4_image(outfd, gzip, sparse, crc);
251 close(outfd);

Completed in 39 milliseconds