Home
last modified time | relevance | path

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

12

/third_party/ffmpeg/libavformat/
Dfile.c42 #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/
Dsf_unistd.h98 #ifndef S_ISFIFO
99 #define S_ISFIFO(mode) (((mode) & _S_IFMT) == _S_IFIFO) macro
/third_party/musl/libc-test/src/functionalext/supplement/stat/
Dmknodat.c36 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()
Dmkfifoat.c37 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()
Dmkfifo.c34 EXPECT_TRUE("mkfifo_0100", S_ISFIFO(sb.st_mode)); in mkfifo_0100()
/third_party/python/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()
/third_party/node/deps/uvwasi/src/
Duv_mapping.c220 #ifdef S_ISFIFO in uvwasi__stat_to_filetype()
221 if (S_ISFIFO(mode)) in uvwasi__stat_to_filetype()
/third_party/python/Lib/
Dstat.py66 def S_ISFIFO(mode): function
/third_party/musl/libc-test/src/api/
Dftw.c47 C(S_ISFIFO(0)) in f()
Dsys_stat.c71 C(S_ISFIFO(0)) in f()
/third_party/musl/ndk_musl_include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/boost/boost/process/detail/posix/
Dhandles.hpp81 …|| 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/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/linux/user/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/uniproton/kernel/include/sys/
Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/libwebsockets/win32port/dirent/
Ddirent-win32.h187 #if !defined(S_ISFIFO)
188 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/toybox/toys/posix/
Dls.c112 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/
Dls.c111 if (S_ISFIFO(mode)) return '|'; in endtype()
279 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
/third_party/libuv/src/unix/
Dtty.c354 if (S_ISFIFO(s.st_mode)) in uv_guess_handle()
/third_party/selinux/libselinux/src/
Dstringrep.c211 if (S_ISFIFO(m)) in mode_to_security_class()
/third_party/gptfdisk/
Ddiskio-unix.cc91 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
/third_party/e2fsprogs/misc/
De2fuzz.c144 S_ISLNK(inode.i_mode) || S_ISFIFO(inode.i_mode) || in find_metadata_blocks()

12