Home
last modified time | relevance | path

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

12

/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/python/cpython2/Lib/
Dstat.py52 def S_ISFIFO(mode): function
Dshutil.py93 if stat.S_ISFIFO(st.st_mode):
/external/kernel-headers/original/uapi/linux/
Dstat.h26 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/external/vboot_reference/futility/
Dfile_type.c112 } else if (S_ISFIFO(sb.st_mode)) { in futil_file_type()
/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.py12 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)
Dshutil.py255 if stat.S_ISFIFO(st.st_mode):
/external/toybox/toys/posix/
Dls.c114 if (S_ISFIFO(mode)) return '|'; in endtype()
242 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
Dfile.c471 } else if (S_ISFIFO(sb.st_mode)) what = "fifo"; in file_main()
/external/selinux/libselinux/src/
Dstringrep.c212 if (S_ISFIFO(m)) in mode_to_security_class()
/external/gptfdisk/
Ddiskio-unix.cc87 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
/external/e2fsprogs/misc/
De2fuzz.c143 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()
/external/f2fs-tools/fsck/
Dsload.c167 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
/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/cpython2/Lib/plat-atheos/
DIN.py591 def S_ISFIFO(m): return (((m) & S_IFMT) == S_IFIFO) function
/external/python/cpython2/Doc/library/
Dstat.rst41 .. function:: S_ISFIFO(mode)
/external/python/cpython3/Lib/asyncio/
Dunix_events.py451 if not (stat.S_ISFIFO(mode) or
587 is_fifo = stat.S_ISFIFO(mode)
/external/python/cpython3/Lib/test/
Dtest_posix.py643 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/
Dstat.rst46 .. function:: S_ISFIFO(mode)
/external/zstd/programs/
Dutil.c257 if (S_ISFIFO(statbuf->st_mode)) return 1; in UTIL_isFIFOStat()
/external/autotest/site_utils/
Dgs_offloader.py262 if stat.S_ISFIFO(file_stat.st_mode):
/external/toybox/lib/
Dlib.c1051 else if (S_ISFIFO(mode)) c = 'p'; in mode_to_string()

12