Searched refs:S_ISFIFO (Results 1 - 25 of 32) sorted by relevance

12

/external/kernel-headers/original/uapi/linux/
H A Dstat.h24 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/external/vboot_reference/futility/
H A Dfile_type.c112 } else if (S_ISFIFO(sb.st_mode)) {
/external/bison/lib/
H A Dsys_stat.in.h89 # undef S_ISFIFO
127 #ifndef S_ISFIFO
129 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
131 # define S_ISFIFO(m) 0
/external/autotest/client/site_tests/security_OpenFDs/
H A Dsecurity_OpenFDs.py174 stat.S_ISFIFO(x) or
/external/bison/darwin-lib/sys/
H A Dstat.h401 # undef S_ISFIFO macro
439 #ifndef S_ISFIFO
441 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
443 # define S_ISFIFO(m) 0 macro
/external/bison/linux-lib/sys/
H A Dstat.h401 # undef S_ISFIFO macro
439 #ifndef S_ISFIFO
441 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
443 # define S_ISFIFO(m) 0 macro
/external/toybox/toys/pending/
H A Dtest.c75 else if (id == 8) toys.exitval = !S_ISFIFO(st.st_mode); // p
H A Dfile.c215 else if (S_ISFIFO(sb.st_mode)) what = "fifo";
H A Dtar.c228 else if (S_ISFIFO(st->st_mode)) hdr.type = '6';
/external/gptfdisk/
H A Ddiskio-unix.cc81 else if (S_ISFIFO(st.st_mode))
/external/selinux/libselinux/src/
H A Dstringrep.c210 if (S_ISFIFO(m))
/external/toybox/toys/posix/
H A Dls.c99 if (S_ISFIFO(mode)) return '|';
277 else if (S_ISFIFO(mode)) color = 33;
/external/avahi/avahi-daemon/
H A Dsd-daemon.c142 if (!S_ISFIFO(st_fd.st_mode))
/external/dbus/dbus/
H A Dsd-daemon.c137 if (!S_ISFIFO(st_fd.st_mode))
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
H A Dbaseline_policy_unittest.cc56 BPF_ASSERT(S_ISFIFO(stat_buf.st_mode) || S_ISSOCK(stat_buf.st_mode));
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp167 #ifndef S_ISFIFO
168 #define S_ISFIFO(x) (0) macro
/external/fio/
H A Ddiskutil.c171 } else if (S_ISFIFO(st.st_mode))
H A Dfilesetup.c1147 else if (S_ISFIFO(sb.st_mode))
/external/toybox/lib/
H A Dlib.c903 else if (S_ISFIFO(mode)) c = 'p';
/external/valgrind/coregrind/
H A Dvgdb.c1229 } else if (S_ISFIFO (st.st_mode)) {
/external/valgrind/include/vki/
H A Dvki-darwin.h127 #define VKI_S_ISFIFO(m) S_ISFIFO(m)
/external/ImageMagick/MagickCore/
H A Dblob.c2548 #if defined(S_ISFIFO)
2549 if ((status != MagickFalse) && S_ISFIFO(image->blob->properties.st_mode))
/external/blktrace/
H A Dblkparse.c2651 if (!stat(str, &st) && S_ISFIFO(st.st_mode))
/external/mksh/src/
H A Dfuncs.c3090 return (stat(opnd1, &b1) == 0 && S_ISFIFO(b1.st_mode));
/external/squashfs-tools/squashfs-tools/
H A Daction.c861 S_ISFIFO(st_mode) || S_ISSOCK(st_mode);

Completed in 1762 milliseconds

12