Home
last modified time | relevance | path

Searched refs:S_ISFIFO (Results 1 – 25 of 60) sorted by relevance

123

/external/python/cpython3/Modules/
D_stat.c95 #ifndef S_ISFIFO
96 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
297 stat_S_ISFUNC(S_ISFIFO,
360 if (S_ISFIFO(mode)) return 'p'; in filetype()
/external/bcc/libbpf-tools/
Dstat.h24 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/external/python/cpython2/Lib/
Dstat.py52 def S_ISFIFO(mode): function
Dshutil.py93 if stat.S_ISFIFO(st.st_mode):
/external/vboot_reference/futility/
Dfile_type.c112 } else if (S_ISFIFO(sb.st_mode)) { in futil_file_type()
/external/kernel-headers/original/uapi/linux/
Dstat.h26 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/external/openscreen/platform/impl/
Dlogging_posix.cc68 } else if (S_ISFIFO(st.st_mode)) { in SetLogFifoOrDie()
/external/python/cpython3/Lib/
Dstat.py66 def S_ISFIFO(mode): function
Dpathlib.py13 from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
1403 return S_ISFIFO(self.stat().st_mode)
/external/musl/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/external/trace-cmd/tracecmd/
Dtrace-setup-guest.c45 if (S_ISFIFO(st.st_mode)) in make_fifo()
/external/cronet/buildtools/third_party/libc++/trunk/src/filesystem/
Dposix_compat.h104 #undef S_ISFIFO
113 #define S_ISFIFO(m) (((m) & _S_IFMT) == _S_IFIFO) macro
/external/libwebsockets/win32port/dirent/
Ddirent-win32.h187 #if !defined(S_ISFIFO)
188 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/external/toybox/toys/posix/
Dls.c118 if (S_ISFIFO(mode)) return '|'; in endtype()
308 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
Dfile.c515 } else if (S_ISFIFO(sb.st_mode)) what = "fifo"; in file_main()
/external/e2fsprogs/misc/
De2fuzz.c144 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()
/external/selinux/libselinux/src/
Dstringrep.c223 if (S_ISFIFO(m)) in mode_to_security_class()
/external/gptfdisk/
Ddiskio-unix.cc93 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
/external/f2fs-tools/fsck/
Dsload.c170 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dprofiler.inc.h35 #define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO) macro
779 if (S_ISDIR(mode) || S_ISCHR(mode) || S_ISBLK(mode) || S_ISFIFO(mode) || in kprobe_ret__do_filp_open()
/external/libbrillo/brillo/
Dfile_utils.cc348 if (!S_ISFIFO(st.st_mode)) { in OpenFifoSafely()
/external/python/parse_type/tasks/_vendor/
Dpathlib.py14 from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
1253 return S_ISFIFO(self.stat().st_mode)
/external/python/cpython3/Lib/asyncio/
Dunix_events.py461 if not (stat.S_ISFIFO(mode) or
597 is_fifo = stat.S_ISFIFO(mode)
/external/python/cpython2/Doc/library/
Dstat.rst41 .. function:: S_ISFIFO(mode)
/external/python/cpython2/Lib/plat-atheos/
DIN.py591 def S_ISFIFO(m): return (((m) & S_IFMT) == S_IFIFO) function

123