Home
last modified time | relevance | path

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

12

/third_party/libsnd/src/
H A 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/
H A 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()
H A 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()
H A Dmkfifo.c34 EXPECT_TRUE("mkfifo_0100", S_ISFIFO(sb.st_mode)); in mkfifo_0100()
/third_party/node/deps/uvwasi/src/
H A Duv_mapping.c27 #if !defined(S_ISFIFO) && defined(S_IFMT) && defined(S_IFIFO)
28 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
224 #ifdef S_ISFIFO in uvwasi__stat_to_filetype()
225 if (S_ISFIFO(mode)) in uvwasi__stat_to_filetype()
227 #endif /* S_ISFIFO */ in uvwasi__stat_to_filetype()
/third_party/ffmpeg/libavformat/
H A Dfile.c43 /* Some systems may not have S_ISFIFO */
44 #ifndef S_ISFIFO
46 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) macro
48 # define S_ISFIFO(m) 0 macro
234 h->is_streamed = !fstat(fd, &st) && S_ISFIFO(st.st_mode); in file_open()
256 return ret < 0 ? AVERROR(errno) : (S_ISFIFO(st.st_mode) ? 0 : st.st_size); in file_seek()
311 else if (S_ISFIFO(st.st_mode)) in file_read_dir()
/third_party/python/Modules/
H A D_stat.c95 #ifndef S_ISFIFO
96 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
297 stat_S_ISFUNC(S_ISFIFO,
298 "S_ISFIFO(mode) -> bool\n\n"
360 if (S_ISFIFO(mode)) return 'p'; in filetype()
420 {"S_ISFIFO", stat_S_ISFIFO, METH_O, stat_S_ISFIFO_doc},
/third_party/libfuse/example/
H A Dpassthrough_helpers.h43 } else if (S_ISFIFO(mode)) { in mknod_wrapper()
/third_party/musl/libc-test/src/api/
H A Dftw.c47 C(S_ISFIFO(0)) in f()
H A Dsys_stat.c71 C(S_ISFIFO(0)) in f()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/linux/user/include/sys/
H A Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dstat.h48 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/python/Lib/
H A Dstat.py66 def S_ISFIFO(mode): function
/third_party/musl/include/sys/
H A Dstat.h55 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/libwebsockets/win32port/dirent/
H A Ddirent-win32.h187 #if !defined(S_ISFIFO)
188 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) macro
/third_party/toybox/porting/liteos_a/toys/posix/
H A Dls.c111 if (S_ISFIFO(mode)) return '|'; in endtype()
279 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
/third_party/toybox/toys/posix/
H A Dls.c112 if (S_ISFIFO(mode)) return '|'; in endtype()
289 else if (S_ISFIFO(mode)) color = 33; in color_from_mode()
/third_party/f2fs-tools/fsck/
H A Dsload.c172 } else if (S_ISFIFO(stat.st_mode)) { in set_inode_metadata()
/third_party/gptfdisk/
H A Ddiskio-unix.cc95 else if (S_ISFIFO(st.st_mode)) in OpenForRead()
/third_party/libuv/src/unix/
H A Dtty.c393 if (S_ISFIFO(s.st_mode)) in uv_guess_handle()
/third_party/node/deps/uv/src/unix/
H A Dtty.c388 if (S_ISFIFO(s.st_mode)) in uv_guess_handle()
/third_party/pulseaudio/src/modules/
H A Dmodule-pipe-source.c263 if (!S_ISFIFO(st.st_mode)) { in pa__init()

Completed in 12 milliseconds

12