/third_party/ffmpeg/libavformat/ |
D | file.c | 42 #ifndef S_ISFIFO 44 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro 46 # define S_ISFIFO(m) 0 macro 236 h->is_streamed = !fstat(fd, &st) && S_ISFIFO(st.st_mode); in file_open() 258 return ret < 0 ? AVERROR(errno) : (S_ISFIFO(st.st_mode) ? 0 : st.st_size); in file_seek() 312 else if (S_ISFIFO(st.st_mode)) in file_read_dir()
|
/third_party/libsnd/src/ |
D | sf_unistd.h | 98 #ifndef S_ISFIFO 99 #define S_ISFIFO(mode) (((mode) & _S_IFMT) == _S_IFIFO) macro
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | mknodat.c | 36 EXPECT_TRUE("mknodat_0100", S_ISFIFO(sb.st_mode)); in mknodat_0100() 53 EXPECT_TRUE("mknodat_0200", S_ISFIFO(sb.st_mode)); in mknodat_0200()
|
D | mkfifoat.c | 37 EXPECT_TRUE("mkfifoat_0100", S_ISFIFO(sb.st_mode)); in mkfifoat_0100() 55 EXPECT_TRUE("mkfifoat_0200", S_ISFIFO(sb.st_mode)); in mkfifoat_0200()
|
D | mkfifo.c | 34 EXPECT_TRUE("mkfifo_0100", S_ISFIFO(sb.st_mode)); in mkfifo_0100()
|
/third_party/python/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()
|
/third_party/node/deps/uvwasi/src/ |
D | uv_mapping.c | 220 #ifdef S_ISFIFO in uvwasi__stat_to_filetype() 221 if (S_ISFIFO(mode)) in uvwasi__stat_to_filetype()
|
/third_party/python/Lib/ |
D | stat.py | 66 def S_ISFIFO(mode): function
|
/third_party/musl/libc-test/src/api/ |
D | ftw.c | 47 C(S_ISFIFO(0)) in f()
|
D | sys_stat.c | 71 C(S_ISFIFO(0)) in f()
|
/third_party/musl/ndk_musl_include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/boost/boost/process/detail/posix/ |
D | handles.hpp | 81 …|| S_ISFIFO (stat_.st_mode) // This macro returns non-zero if the file is a FIFO special file, or … in is_stream_handle()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/musl/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/musl/porting/linux/user/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | stat.h | 48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/libwebsockets/win32port/dirent/ |
D | dirent-win32.h | 187 #if !defined(S_ISFIFO) 188 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
|
/third_party/toybox/toys/posix/ |
D | ls.c | 112 if (S_ISFIFO(mode)) return '|'; in endtype() 287 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
D | ls.c | 111 if (S_ISFIFO(mode)) return '|'; in endtype() 279 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
|
/third_party/libuv/src/unix/ |
D | tty.c | 354 if (S_ISFIFO(s.st_mode)) in uv_guess_handle()
|
/third_party/selinux/libselinux/src/ |
D | stringrep.c | 211 if (S_ISFIFO(m)) in mode_to_security_class()
|
/third_party/gptfdisk/ |
D | diskio-unix.cc | 91 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
|
/third_party/e2fsprogs/misc/ |
D | e2fuzz.c | 144 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()
|