Searched refs:popen (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-11-stable/usr.sbin/cron/cron/
H A DMakefile5 SRCS= cron.c database.c do_command.c job.c user.c popen.c
/freebsd-11-stable/lib/libc/tests/gen/
H A Dpopen_test.c28 * Limited test program for popen() as specified by IEEE Std. 1003.1-2008,
81 fp = popen("exit 7", mode);
82 ATF_CHECK_MSG(fp != NULL, "popen(, \"%s\") failed", mode);
103 fp = popen("exit 9", mode);
104 ATF_CHECK_MSG(fp != NULL, "popen(, \"%s\") failed", mode);
120 fp = popen("echo hi there", mode);
121 ATF_CHECK_MSG(fp != NULL, "popen(, \"%s\") failed", mode);
147 fp = popen("read x && [ \"$x\" = abcd ]", mode);
148 ATF_CHECK_MSG(fp != NULL, "popen(, \"%s\") failed", mode);
166 fp = popen("exi
[all...]
/freebsd-11-stable/rescue/librescue/
H A DMakefile23 SRCS= exec.c getusershell.c login_class.c popen.c rcmdsh.c \
/freebsd-11-stable/usr.sbin/autofs/
H A DMakefile12 SRCS+= popen.c
/freebsd-11-stable/usr.sbin/asf/
H A Dasf_prog.c58 if ((kldstat = popen("kldstat", "r")) == NULL)
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_popen.c57 #define DATAFILE "popen.data"
90 if ((my_pipe = popen(command, "w")) == NULL)
91 TEST_ERROR("popen write");
101 if ((my_pipe = popen(command, "r")) == NULL)
102 TEST_ERROR("popen read");
/freebsd-11-stable/usr.sbin/cron/doc/
H A DMakefile.vixie92 env.c job.c user.c popen.c misc.c compat.c
95 misc.c job.c do_command.c env.c popen.c
98 misc.o env.o popen.o compat.o
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A DMakefile.am23 popen.c \
/freebsd-11-stable/sbin/devd/tests/
H A Dclient_test.c56 create_stdout = popen("mdconfig -a -s 64 -t null", "r");
64 destroy_stdout = popen(destroy_cmd, "r");
/freebsd-11-stable/contrib/groff/src/include/
H A Dlib.h85 extern "C" { FILE *popen(const char *, const char *); }
H A Dnonposix.h55 # define popen(c,m) _popen(c,m) macro
/freebsd-11-stable/usr.bin/mail/
H A DMakefile6 getname.c head.c v7.local.c lex.c list.c main.c names.c popen.c \
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm.c212 f = popen(p,"r");
276 f = popen(p,"r");
286 f = popen(p,"r");
311 f = popen(p,"r");
H A Dctm_passb.c40 b=popen(buf, "w");
/freebsd-11-stable/libexec/ftpd/
H A DMakefile8 SRCS= ftpd.c ftpcmd.y logwtmp.c popen.c
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dsave_execute.c73 fp = popen(exe->path, "w");
/freebsd-11-stable/sys/dev/usb/
H A Dusb_generic.c1439 struct usb_fs_open *popen; member in union:__anon179
1509 if (u.popen->ep_index >= f->fs_ep_max) {
1513 if (f->fs_xfer[u.popen->ep_index] != NULL) {
1517 if (u.popen->max_bufsize > USB_FS_MAX_BUFSIZE) {
1518 u.popen->max_bufsize = USB_FS_MAX_BUFSIZE;
1520 if (u.popen->max_frames & USB_FS_MAX_FRAMES_PRE_SCALE) {
1522 u.popen->max_frames &= ~USB_FS_MAX_FRAMES_PRE_SCALE;
1526 if (u.popen->max_frames > USB_FS_MAX_FRAMES) {
1527 u.popen->max_frames = USB_FS_MAX_FRAMES;
1530 if (u.popen
[all...]
/freebsd-11-stable/usr.bin/whereis/
H A Dwhereis.c297 if ((p = popen(MANPATHCMD, "r")) == NULL)
498 if ((p = popen(cp, "r")) != NULL) {
608 if ((p = popen(cp, "r")) == NULL)
/freebsd-11-stable/libexec/rpc.rwalld/
H A Drwalld.c148 /* fork, popen wall with special option, and send the message */
152 pfp = popen(WALL_CMD, "w");
/freebsd-11-stable/lib/libc/gen/
H A Dpopen.c34 static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 5/3/95";
70 popen(const char *command, const char *type) function
81 * Lite2 introduced two-way popen() pipes using _socketpair().
H A DMakefile.inc93 popen.c \
241 popen.3 \
433 MLINKS+=popen.3 pclose.3
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilPosix.cpp149 return popen(Command, Mode);
/freebsd-11-stable/contrib/less/
H A Dlsystem.c314 if ((f = popen(cmd, "w")) == NULL)
/freebsd-11-stable/bin/ed/
H A Dio.c41 fp = (*fn == '!') ? popen(fn + 1, "r") : fopen(strip_escapes(fn), "r");
152 fp = (*fn == '!') ? popen(fn+1, "w") : fopen(strip_escapes(fn), mode);
/freebsd-11-stable/contrib/groff/src/devices/xditview/
H A Dxditview.c63 FILE *popen(const char *, const char *);
317 new_file = popen (name+1, "r");
449 print_file = popen(name, "w");

Completed in 470 milliseconds

123