/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/python/cpython2/Lib/ |
D | stat.py | 52 def S_ISFIFO(mode): function
|
D | shutil.py | 93 if stat.S_ISFIFO(st.st_mode):
|
/external/kernel-headers/original/uapi/linux/ |
D | stat.h | 26 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
|
/external/vboot_reference/futility/ |
D | file_type.c | 112 } else if (S_ISFIFO(sb.st_mode)) { in futil_file_type()
|
/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 | 12 from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO 1522 return S_ISFIFO(self.stat().st_mode)
|
D | shutil.py | 255 if stat.S_ISFIFO(st.st_mode):
|
/external/toybox/toys/posix/ |
D | ls.c | 114 if (S_ISFIFO(mode)) return '|'; in endtype() 242 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
|
D | file.c | 471 } else if (S_ISFIFO(sb.st_mode)) what = "fifo"; in file_main()
|
/external/selinux/libselinux/src/ |
D | stringrep.c | 212 if (S_ISFIFO(m)) in mode_to_security_class()
|
/external/gptfdisk/ |
D | diskio-unix.cc | 87 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
|
/external/e2fsprogs/misc/ |
D | e2fuzz.c | 143 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()
|
/external/f2fs-tools/fsck/ |
D | sload.c | 167 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
|
/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/cpython2/Lib/plat-atheos/ |
D | IN.py | 591 def S_ISFIFO(m): return (((m) & S_IFMT) == S_IFIFO) function
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 41 .. function:: S_ISFIFO(mode)
|
/external/python/cpython3/Lib/asyncio/ |
D | unix_events.py | 451 if not (stat.S_ISFIFO(mode) or 587 is_fifo = stat.S_ISFIFO(mode)
|
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 643 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) 659 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) 1184 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) 1273 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
|
/external/python/cpython3/Doc/library/ |
D | stat.rst | 46 .. function:: S_ISFIFO(mode)
|
/external/zstd/programs/ |
D | util.c | 257 if (S_ISFIFO(statbuf->st_mode)) return 1; in UTIL_isFIFOStat()
|
/external/autotest/site_utils/ |
D | gs_offloader.py | 262 if stat.S_ISFIFO(file_stat.st_mode):
|
/external/toybox/lib/ |
D | lib.c | 1051 else if (S_ISFIFO(mode)) c = 'p'; in mode_to_string()
|