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

123456789

/illumos-gate/usr/src/lib/libast/common/stdio/
H A D_stdopen.c24 /* OBSOLETE 20010101 -- use fdopen */
31 return fdopen(fd, mode);
H A Dfdopen.c27 fdopen(int fd, const char* mode) function
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dfdopen.c40 #pragma weak _fdopen = fdopen
56 fdopen(int fd, const char *type) /* associate file desc. with stream */ function
H A Dtmpfile.c90 if ((p = fdopen(mkret, "w+")) == NULL) {
/illumos-gate/usr/src/cmd/ypcmd/ypupdated/
H A Dopenchild.c117 *fto = fdopen(pdto[1], "w");
119 *ffrom = fdopen(pdfrom[0], "r");
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dfdopen.c47 fdopen(fd, mode) function
/illumos-gate/usr/src/cmd/mailx/
H A Dpopen.c62 extern FILE *fdopen();
108 return(fdopen(myside, mode));
H A Dquit.c173 (obuf = fdopen(fd, "w")) == NULL) {
198 (obuf = fdopen(fd, "r+")) == NULL) {
207 (obuf = fdopen(fd, "a")) == NULL) {
300 PRIV(rbuf = fdopen(fd, "w+"));
/illumos-gate/usr/src/uts/common/zmod/
H A Dzutil.h133 # include <unix.h> /* for fdopen */
135 # ifndef fdopen
136 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
156 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
161 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
167 # define fdopen(fd,type) _fdopen(fd,type) macro
/illumos-gate/usr/src/boot/lib/libz/
H A Dzutil.h125 # include <unix.h> /* for fdopen */
127 # ifndef fdopen
128 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
149 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
154 # define fdopen(fd,mode) NULL /* No fdopen() */ macro
160 # define fdopen(fd,type) _fdopen(fd,type) macro
/illumos-gate/usr/src/lib/libgen/common/
H A Dp2open.c58 fp[0] = fdopen(fds[0], "w");
59 fp[1] = fdopen(fds[1], "r");
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h82 extern FILE *fdopen(int, char *);
/illumos-gate/usr/src/cmd/oamuser/group/
H A Ddel_group.c70 if ((t_fptr = fdopen(fd, "w")) == NULL) {
H A Dmod_group.c70 if ((t_fptr = fdopen(fd, "w")) == NULL) {
/illumos-gate/usr/src/cmd/rpcbind/
H A Dwarmstart.c76 fp = fdopen(fd, "w");
132 fp = fdopen(fd, "r");
/illumos-gate/usr/src/cmd/sendmail/aux/
H A Dmconnect.c214 f = fdopen(s, "w");
229 f = fdopen(s, "r");
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dpopen.c76 return (fdopen(myside, mode));
/illumos-gate/usr/src/lib/libmail/common/
H A Dpopenvp.c97 return (fdopen(myside, mode));
/illumos-gate/usr/src/cmd/print/conv_fix/
H A Dconv_fix.c134 if ((fp2 = fdopen(fd, "a")) != NULL) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.fingerd.c131 if ((fp = fdopen(p[0], "r")) == NULL)
132 fatal(argv[0], "fdopen");
/illumos-gate/usr/src/cmd/dumpadm/
H A Dminfree.c50 return (fdopen(fd, fmode));
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dipft_ef.c58 efp = fdopen(efd, "r");
/illumos-gate/usr/src/tools/cscope-fast/
H A Dmypopen.c84 return (fdopen(myside, mode));
/illumos-gate/usr/src/cmd/dispadmin/
H A Ddispadmin.c314 if ((fp = fdopen(fd, "r")) == NULL)
338 if ((fp = fdopen(fd, "w")) == NULL)
386 if ((fp = fdopen(fd, "r")) == NULL)
/illumos-gate/usr/src/cmd/keyserv/
H A Dupdate.c191 *fto = fdopen(pdto[1], "w");
193 *ffrom = fdopen(pdfrom[0], "r");
275 wf = fdopen(wfd, "w");
277 (void) fprintf(stderr, "%s: cannot fdopen '%s'.\n",

Completed in 174 milliseconds

123456789