Searched refs:fdopen (Results 101 - 125 of 212) sorted by relevance

123456789

/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Demacstool.c316 console = fdopen (console_fd = open("/dev/console",O_WRONLY), "w");
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dditto.c169 fp = fdopen(amaster, "r+");
/macosx-10.9.5/ntp-88/lib/isc/unix/
H A Dfile.c290 f = fdopen(fd, "w+");
/macosx-10.9.5/ntp-88/lib/isc/win32/
H A Dfile.c334 f = fdopen(fd, "w+");
/macosx-10.9.5/procmail-14/procmail/src/
H A Dincludes.h39 getchar() fdopen() putc() fputs() printf()
341 #define Fdopen(fd,type) ((FILE*)fdopen(fd,type))
/macosx-10.9.5/sudo-72/src/
H A Diolog.c215 vfd = fdopen(fd, "w");
/macosx-10.9.5/tcsh-65/tcsh/win32/
H A Dntport.h141 #define fdopen nt_fdopen macro
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Dgzio.c61 # pragma map (fdopen , "\174\174FDOPEN")
62 FILE *fdopen(int, const char *);
208 s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
244 to mimic the behavio(u)r of fdopen.
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dhist.c2476 out = fd >= 0 ? fdopen(fd, "a") : NULL;
2480 out = fd >= 0 ? fdopen(fd, "w") : NULL;
2508 out = fd >= 0 ? fdopen(fd, "w") : NULL;
2690 FILE *out = fdopen(fd, "w");
2744 FILE *out = fdopen(fd, "w");
/macosx-10.9.5/nano-11/src/
H A Dfiles.c623 *f = fdopen(fd, "rb");
1125 *f = fdopen(fd, "r+b");
1524 f_source = fdopen(fd_source, "rb");
1566 f = fdopen(fd, (append == APPEND) ? "ab" : "wb");
1643 f_source = fdopen(fd_source, "rb");
/macosx-10.9.5/emacs-92/emacs/src/
H A Demacs.c961 stdin = fdopen (0, "r");
963 stdout = fdopen (1, "w");
965 stderr = fdopen (2, "w");
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftpd/
H A Dftpd.c1187 return (fdopen(data, mode));
1212 return (fdopen(s, mode));
1280 return (fdopen(pdata, mode));
1286 return (fdopen(data, mode));
/macosx-10.9.5/Libc-997.90.3/nls/FreeBSD/
H A Dmsgcat.c365 if ((cat->fp = fdopen(fd, "r")) == NULL) {
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dauth.c536 if ((f = fdopen(fd, "r")) == NULL) {
H A Dmoduli.c466 if ((fp = fdopen(r, "w")) == NULL) {
467 logit("write_checkpoint: fdopen: %s", strerror(errno));
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dunix++.h232 FILE *fdopen(const char *mode = NULL); // fdopen(3)
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dunix++.h232 FILE *fdopen(const char *mode = NULL); // fdopen(3)
/macosx-10.9.5/cron-39/crontab/
H A Dcrontab.c425 if (!(NewCrontab = fdopen(t, "r+"))) {
426 warn("fdopen");
/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Devhiperfifo.c407 g->input = fdopen(sockfd, "r");
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dutil.c227 outfile = fdopen (pipes[1], "w");
229 pfatal_with_name ("fdopen");
/macosx-10.9.5/launchd-842.92.1/src/
H A Dlaunchd.c180 if (!(launchd_console = fdopen(cfd, "w"))) {
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Dftp.c264 cin = fdopen(s, "r");
265 cout = fdopen(s, "w");
267 warnx("Can't fdopen socket");
1678 return (fdopen(data, lmode));
1736 return (fdopen(data, lmode));
/macosx-10.9.5/mail_cmds-29/mail/
H A Dlex.c139 if ((fd = mkstemp(tempname)) == -1 || (otf = fdopen(fd, "w")) == NULL)
/macosx-10.9.5/misc_cmds-32/calendar/
H A Dio.c409 return (fdopen(fd, "w+"));
/macosx-10.9.5/network_cmds-433/kdumpd.tproj/
H A Dkdumpd.c441 file = fdopen(fd, (mode == RRQ)? "r":"w");

Completed in 249 milliseconds

123456789