Searched refs:fdopen (Results 51 - 75 of 249) sorted by relevance

12345678910

/netbsd-6-1-5-RELEASE/usr.sbin/rpcbind/
H A Dwarmstart.c79 if (fd == -1 || (fp = fdopen(fd, "w")) == NULL) {
/netbsd-6-1-5-RELEASE/tests/lib/libc/stdlib/
H A Dt_exit.c171 f = fdopen(fd, "r");
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dplainrsa-gen.c265 fp = fdopen(fd, "w");
283 fpin = fdopen(fdin, "r");
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/demos/easy_tls/
H A Dtest.c150 conn_in = fdopen(fd, "r");
152 perror("fdopen");
155 conn_out = fdopen(fd, "w");
157 perror("fdopen");
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_filter.c144 if ((ofp = fdopen(output[0], "r")) == NULL) {
145 msgq(sp, M_SYSERR, "fdopen");
232 if ((ifp = fdopen(input[1], "w")) == NULL)
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/
H A Dconfig.h.win32221 #define fdopen _fdopen
/netbsd-6-1-5-RELEASE/usr.bin/whois/
H A Dwhois.c223 sfi = fdopen(s, "r");
224 sfo = fdopen(s, "w");
226 err(1, "fdopen");
/netbsd-6-1-5-RELEASE/usr.bin/chpass/
H A Dedit.c96 if (!(fp = fdopen(fd, "w")))
155 (fp = fdopen(fd, "r")) == NULL)
/netbsd-6-1-5-RELEASE/usr.bin/gzip/
H A Dunpack.c180 if ((unpackd->fpIn = fdopen(in, "r")) == NULL)
181 maybe_err("Can not fdopen() input stream");
182 if ((unpackd->fpOut = fdopen(out, "w")) == NULL)
183 maybe_err("Can not fdopen() output stream");
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dmakeshell.c488 FILE * fp = fdopen(fdin, "r" FOPEN_BINARY_FLAG);
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/liblber/
H A Dstdio.c32 * to create a valid file descriptor, and then fdopen() it to get
57 f = fdopen( fds[1], "w" );
/netbsd-6-1-5-RELEASE/external/cddl/osnet/lib/libzfs/
H A Dfsshare.c174 newfd = fdopen(fd, "r+");
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dsystem.h228 # define CVS_FDOPEN fdopen
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Drelease.c89 return fdopen (fromfd, "r");
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/
H A Dsystem.h42 #define fdopen(FILDES,MODE) fdopen_unlocked(FILDES,MODE) macro
H A Dfixincl.c352 FILE* fp = fdopen (data_map_fd, "r");
514 pf = fdopen (fd, "w");
1158 FILE *in_fp = fdopen (read_fd, "r");
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dserial.h249 int (*fdopen) (struct serial *, int fd); member in struct:serial_ops
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/fixincludes/
H A Dsystem.h43 #define fdopen(FILDES,MODE) fdopen_unlocked(FILDES,MODE) macro
/netbsd-6-1-5-RELEASE/lib/libwrap/
H A Drfc931.c64 if ((fp = fdopen(s, "r+")) == 0) {
65 tcpd_warn("fdopen: %m");
/netbsd-6-1-5-RELEASE/libexec/fingerd/
H A Dfingerd.c213 if (!(fp = fdopen(p[0], "r")))
214 my_err("fdopen: %s", strerror(errno));
/netbsd-6-1-5-RELEASE/games/hunt/huntd/
H A Dfaketalk.c157 if ((f = fdopen(service, "r")) == NULL) {
159 syslog(LOG_ERR, "fdopen failed\n");
161 warn("faketalk: fdopen");
/netbsd-6-1-5-RELEASE/usr.sbin/kvm_mkdb/
H A Dnlist_aout.c167 if (!(fp = fdopen(fd, "r"))) {
/netbsd-6-1-5-RELEASE/usr.sbin/traceroute/
H A Das.c100 f = fdopen(s, "r+");
/netbsd-6-1-5-RELEASE/external/bsd/cron/dist/
H A Ddo_command.c331 FILE *out = fdopen(stdin_pipe[WRITE_PIPE], "w");
396 FILE *in = fdopen(stdout_pipe[READ_PIPE], "r");
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/unix/
H A Dfile.c316 f = fdopen(fd, "w+");
531 f = fdopen(fd, "w");

Completed in 355 milliseconds

12345678910