Home
last modified time | relevance | path

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

12

/external/python/cpython3/Modules/
D_stat.c91 #ifndef S_ISFIFO
92 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
293 stat_S_ISFUNC(S_ISFIFO,
356 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/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
1501 return S_ISFIFO(self.stat().st_mode)
Dshutil.py250 if stat.S_ISFIFO(st.st_mode):
/external/u-boot/fs/yaffs2/
Dyportenv.h258 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/external/u-boot/include/linux/
Dstat.h27 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
/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.c454 } else if (S_ISFIFO(sb.st_mode)) what = "fifo"; in file_main()
Dtar.c278 else if (S_ISFIFO(st->st_mode)) hdr.type = '6'; in add_to_tar()
/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.c150 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
/external/python/cpython3/Lib/asyncio/
Dunix_events.py451 if not (stat.S_ISFIFO(mode) or
587 is_fifo = stat.S_ISFIFO(mode)
/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/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))
1185 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
1264 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_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
/external/python/cpython3/Doc/library/
Dstat.rst46 .. function:: S_ISFIFO(mode)
/external/autotest/site_utils/
Dgs_offloader.py266 if stat.S_ISFIFO(file_stat.st_mode):
/external/toybox/lib/
Dlib.c1008 else if (S_ISFIFO(mode)) c = 'p'; in mode_to_string()

12