/external/python/cpython3/Modules/ |
D | _stat.c | 95 #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/ |
D | stat.h | 24 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
|
/external/python/cpython2/Lib/ |
D | stat.py | 52 def S_ISFIFO(mode): function
|
D | shutil.py | 93 if stat.S_ISFIFO(st.st_mode):
|
/external/vboot_reference/futility/ |
D | file_type.c | 112 } else if (S_ISFIFO(sb.st_mode)) { in futil_file_type()
|
/external/kernel-headers/original/uapi/linux/ |
D | stat.h | 26 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
|
/external/openscreen/platform/impl/ |
D | logging_posix.cc | 68 } else if (S_ISFIFO(st.st_mode)) { in SetLogFifoOrDie()
|
/external/python/cpython3/Lib/ |
D | stat.py | 66 def S_ISFIFO(mode): function
|
D | pathlib.py | 13 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/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/external/trace-cmd/tracecmd/ |
D | trace-setup-guest.c | 45 if (S_ISFIFO(st.st_mode)) in make_fifo()
|
/external/cronet/buildtools/third_party/libc++/trunk/src/filesystem/ |
D | posix_compat.h | 104 #undef S_ISFIFO 113 #define S_ISFIFO(m) (((m) & _S_IFMT) == _S_IFIFO) macro
|
/external/libwebsockets/win32port/dirent/ |
D | dirent-win32.h | 187 #if !defined(S_ISFIFO) 188 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/external/toybox/toys/posix/ |
D | ls.c | 118 if (S_ISFIFO(mode)) return '|'; in endtype() 308 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
|
D | file.c | 515 } else if (S_ISFIFO(sb.st_mode)) what = "fifo"; in file_main()
|
/external/e2fsprogs/misc/ |
D | e2fuzz.c | 144 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()
|
/external/selinux/libselinux/src/ |
D | stringrep.c | 223 if (S_ISFIFO(m)) in mode_to_security_class()
|
/external/gptfdisk/ |
D | diskio-unix.cc | 93 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
|
/external/f2fs-tools/fsck/ |
D | sload.c | 170 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | profiler.inc.h | 35 #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/ |
D | file_utils.cc | 348 if (!S_ISFIFO(st.st_mode)) { in OpenFifoSafely()
|
/external/python/parse_type/tasks/_vendor/ |
D | pathlib.py | 14 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/ |
D | unix_events.py | 461 if not (stat.S_ISFIFO(mode) or 597 is_fifo = stat.S_ISFIFO(mode)
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 41 .. function:: S_ISFIFO(mode)
|
/external/python/cpython2/Lib/plat-atheos/ |
D | IN.py | 591 def S_ISFIFO(m): return (((m) & S_IFMT) == S_IFIFO) function
|