Searched refs:fdopen (Results 1 - 25 of 26) sorted by relevance

12

/haiku/src/tools/fs_shell/
H A Dexternal_commands_unix.cpp17 static FILE* sInput = fdopen(3, "r");
25 static FILE* sOutput = fdopen(4, "w");
H A Dfs_shell_command_unix.cpp22 FILE* out = fdopen(4, "w");
30 FILE* in = fdopen(3, "r");
/haiku/src/tests/system/libroot/posix/
H A Dposix_spawn_pipe_test.c35 FILE *cOut = fdopen(out[readIdx], "r");
37 FILE *cErr = fdopen(err[readIdx], "r");
H A Dtst-wprintf2.c34 fp = fdopen(dup(fd), "w");
36 error(EXIT_FAILURE, errno, "fdopen(,\"w\")");
46 fp = fdopen(dup (fd), "a");
48 error(EXIT_FAILURE, errno, "fdopen(,\"a\")");
59 fp = fdopen(fd, "r");
61 error(EXIT_FAILURE, errno, "fdopen(,\"r\")");
H A Dtst-fgetws.c39 if ((fp = fdopen(fd, "w")) == NULL) {
52 if ((fp = fdopen(fd, "w")) == NULL) {
H A Dtst-ungetwc1.c34 if ((fp = fdopen(fd, "w")) == NULL) {
H A Dtst-ungetwc2.c34 if ((fp = fdopen(fd, "w")) == NULL) {
H A Dfseek_test.cpp57 fp = fdopen(fd, "w+");
/haiku/src/bin/network/ftpd/
H A Dpopen.c168 /* parent; assume fdopen can't fail... */
170 iop = fdopen(pdes[0], type);
173 iop = fdopen(pdes[1], type);
H A Dftpd.c1796 fout = fdopen(fd, mode);
1862 return (fdopen(data, mode));
1908 return (fdopen(s, mode));
1976 return (fdopen(pdata, mode));
1987 return (fdopen(data, mode));
/haiku/headers/cpp/
H A Diostdio.h106 #define fdopen _IO_fdopen macro
/haiku/src/kits/shared/
H A DCommandPipe.cpp206 *_out = fdopen(fStdOut[0], "r");
207 *_err = fdopen(fStdErr[0], "r");
225 *_outAndErr = fdopen(fStdOut[0], "r");
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofdopen.c117 seek in fdopen.)
175 versioned_symbol (libc, __new_fdopen, fdopen, GLIBC_2_1);
H A Dstdio.h262 extern FILE *fdopen (int __fd, __const char *__modes) __THROW;
/haiku/src/apps/expander/
H A DExpanderThread.cpp99 fExpanderOutput = fdopen(fStdOut, "r");
100 fExpanderError = fdopen(fStdErr, "r");
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdio_private.h81 # define fdopen(fd, mode) _IO_new_fdopen (fd, mode) macro
/haiku/src/bin/network/traceroute/
H A Das.c99 f = fdopen(s, "r+");
/haiku/src/bin/unzip/
H A Dfunzip.c371 #endif /* call AND the fdopen() in binary mode :-( */
377 if ((G.in = fdopen(0, FOPR)) == (FILE *)NULL)
393 if ((out = fdopen(1, FOPW)) == (FILE *)NULL)
/haiku/src/apps/text_search/
H A DGrepper.cpp373 FILE* output = fdopen(out, "r");
374 FILE* errors = fdopen(err, "r");
/haiku/headers/posix/
H A Dstdio.h71 extern FILE *fdopen(int fd, const char *mode);
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp169 fOutputFile = fdopen(fStdOut, "r");
/haiku/src/libs/uuid/
H A Dgen_uuid.c247 state_f = fdopen(state_fd, "r+");
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c1684 void fdopen() {} function
H A Dlibroot_stubs_legacy.c1629 void fdopen() {} function
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp2131 FileCloser attrFile(fdopen(attrFD, "r"));

Completed in 5009 milliseconds

12