Searched refs:mkfifo (Results 1 - 25 of 56) sorted by relevance

123

/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dmkfifo.c28 NoN(mkfifo)
40 mkfifo(const char* path, mode_t mode)
H A Dmknod.c43 return mkfifo(path, mode);
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dcoproc.bash46 mkfifo "$fifo.in" || return $?
47 mkfifo "$fifo.out" || {
/macosx-10.10/postfix-255/postfix/src/util/
H A Dfifo_open.c54 if (mkfifo(FIFO_PATH, 0600) < 0)
55 perrorexit("mkfifo");
H A Dfifo_listen.c65 * wanted them to be, because mkfifo() is subject to umask settings.
74 if (mkfifo(path, permissions) < 0)
H A Dfifo_rdonly_bug.c83 if (mkfifo(FIFO_PATH, 0600) < 0)
84 perrorexit("mkfifo");
H A Dfifo_rdwr_bug.c58 if (mkfifo(FIFO_PATH, 0600) < 0)
59 perrorexit("mkfifo");
H A Dsys_compat.c26 /* int mkfifo(path, mode)
155 * mkfifo() emulation - requires superuser privileges
161 int mkfifo(char *path, int mode) function
/macosx-10.10/file_cmds-242/mkfifo/
H A Dmkfifo.c1 /* $NetBSD: mkfifo.c,v 1.8 1997/10/19 05:11:54 lukem Exp $ */
44 static char sccsid[] = "@(#)mkfifo.c 8.2 (Berkeley) 1/5/94";
46 __RCSID("$NetBSD: mkfifo.c,v 1.8 1997/10/19 05:11:54 lukem Exp $");
82 if (!COMPAT_MODE("bin/mkfifo", "Unix2003")) {
108 if (COMPAT_MODE("bin/mkfifo", "Unix2003")) {
115 if (mkfifo(*argv, mode) < 0) {
126 (void)fprintf(stderr, "usage: mkfifo [-m mode] fifoname ...\n");
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Dmkfifo.c26 * mkfifo
30 "[-?\n@(#)$Id: mkfifo (AT&T Research) 2009-01-02 $\n]"
32 "[+NAME?mkfifo - make FIFOs (named pipes)]"
91 if (mkfifo(arg, mode) < 0)
H A DMakefile25 mkfifo.c mktemp.c mv.c paste.c pathchk.c pids.c rev.c rm.c \
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/logfileconfig/
H A Dtests.sh95 mkfifo $PIPEFILE >/dev/null 2>&1
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Ddislocate162 mkfifo [infifoname $pid]
163 mkfifo [outfifoname $pid]
166 proc mkfifo {f} {
172 if {0==[catch {exec mkfifo $f}]} return ;# POSIX
H A Dkibitz327 proc mkfifo {f} {
328 if 0==[catch {exec mkfifo $f}] return ;# POSIX
345 mkfifo $userinfile
346 mkfifo $useroutfile
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/
H A DMakefile.am81 mkfifo $${fifofile}; \
/macosx-10.10/rsync-45/rsync/testsuite/
H A Ddevices.test39 mkfifo "$fromdir/fifo" || test_skipped "Can't run mkfifo"
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dsys_macosx.cpp186 return mkfifo(path, mode);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Doslib.c233 mkfifo (path, mode) function
/macosx-10.10/xnu-2782.1.97/bsd/man/man2/
H A DMakefile122 mkfifo.2 \
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dsystem.h215 #if !HAVE_MKFIFO && !defined mkfifo && defined S_IFIFO
216 # define mkfifo(file_name, mode) (mknod (file_name, (mode) | S_IFIFO, 0)) macro
/macosx-10.10/screen-22/screen/
H A Dos.h393 #undef mkfifo macro
394 #define mkfifo(n,m) mknod(n,S_IFIFO|(m),0) macro
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/tests/
H A Dbasic.sh324 if cat /dev/fd/3 >/dev/null 2>&1 || whence mkfifo > /dev/null
353 if cat /dev/fd/3 >/dev/null 2>&1 || whence mkfifo > /dev/null
H A Dio.sh340 if mkfifo $tmp/fifo 2> /dev/null
354 mkfifo $tmp/fifo 2> /dev/null
H A Dsubshell.sh349 if cat /dev/fd/3 3</dev/null >/dev/null 2>&1 || whence mkfifo > /dev/null
518 if cat /dev/fd/3 3</dev/null >/dev/null 2>&1 || whence mkfifo > /dev/null
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dpipe.c257 if (mkfifo(filename, mode) == -1) {

Completed in 321 milliseconds

123