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

/external/iproute2/misc/
H A Dlnstat.h40 int lnstat_dump(FILE *outfd, struct lnstat_file *lnstat_files);
H A Dlnstat_util.c278 int lnstat_dump(FILE *outfd, struct lnstat_file *lnstat_files) argument
285 fprintf(outfd, "%s:\n", lf->path);
288 fprintf(outfd, "\t%2u: %s\n", i+1, lf->fields[i].name);
/external/e2fsprogs/misc/
H A Dlogsave.c34 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);
/external/qemu/distrib/ext4_utils/src/
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);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cc203 int *outfd = NULL; local
224 outfd = sock_pair[i];
235 CHECK(outfd);
243 internal_close(outfd[0]);
244 internal_close(outfd[1]);
252 internal_dup2(outfd[0], STDIN_FILENO);
254 internal_close(outfd[0]);
255 internal_close(outfd[1]);
265 internal_close(outfd[0]);
268 output_fd_ = outfd[
[all...]
/external/ppp/pppd/
H A Dmain.c1510 safe_fork(int infd, int outfd, int errfd) argument
1546 /* make sure infd, outfd and errfd won't get tromped on below */
1549 if (outfd == 0 || outfd == 2)
1550 outfd = dup(outfd);
1557 if (outfd != 1)
1558 dup2(outfd, 1);
1575 if (outfd != 1)
1576 close(outfd);
[all...]
/external/elfutils/0.153/src/
H A Dld.h790 int outfd; member in struct:ld_state
H A Dunstrip.c1910 int outfd = open64 (output_file, O_RDWR | O_CREAT,
1912 if (outfd < 0)
1914 Elf *outelf = elf_begin (outfd, ELF_C_WRITE, NULL);
1933 close (outfd);
1908 int outfd = open64 (output_file, O_RDWR | O_CREAT, local
H A Dldgeneric.c2687 ld_state.outfd = fd;
6991 if (fstat (ld_state.outfd, &temp_st) != 0)
7013 (void) close (ld_state.outfd);

Completed in 179 milliseconds