/third_party/python/Modules/ |
D | _stat.c | 103 #ifndef S_ISSOCK 104 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) macro 305 stat_S_ISFUNC(S_ISSOCK, 361 if (S_ISSOCK(mode)) return 's'; in filetype()
|
/third_party/ntfs-3g/include/ntfs-3g/ |
D | dir.h | 46 #ifndef S_ISSOCK 47 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/third_party/ffmpeg/libavformat/ |
D | file.c | 60 #ifndef S_ISSOCK 62 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro 64 # define S_ISSOCK(m) 0 macro 320 else if (S_ISSOCK(st.st_mode)) in file_read_dir()
|
/third_party/boost/boost/config/platform/ |
D | vxworks.hpp | 350 #ifndef S_ISSOCK 351 # define S_ISSOCK(mode) ((mode & S_IFMT) == S_IFSOCK) // Is file a socket? macro
|
/third_party/node/deps/uvwasi/src/ |
D | uv_mapping.c | 215 #ifdef S_ISSOCK in uvwasi__stat_to_filetype() 216 if (S_ISSOCK(mode)) in uvwasi__stat_to_filetype()
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gstfilesrc.c | 91 #ifndef S_ISSOCK 92 #define S_ISSOCK(x) (0) macro 483 if (S_ISSOCK (stat_results.st_mode)) in gst_file_src_start()
|
/third_party/python/Lib/ |
D | stat.py | 74 def S_ISSOCK(mode): function
|
/third_party/musl/libc-test/src/api/ |
D | ftw.c | 50 C(S_ISSOCK(0)) in f()
|
D | sys_stat.c | 74 C(S_ISSOCK(0)) in f()
|
/third_party/uboot/u-boot-2020.01/include/linux/ |
D | stat.h | 28 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/third_party/uboot/u-boot-2020.01/fs/yaffs2/ |
D | yportenv.h | 252 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/third_party/boost/boost/process/detail/posix/ |
D | handles.hpp | 82 …|| S_ISSOCK (stat_.st_mode) ;// This macro returns non-zero if the file is a socket. See section 1… in is_stream_handle()
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | stat.h | 50 #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 50 #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) macro
|
/third_party/musl/include/sys/ |
D | stat.h | 50 #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) macro
|
/third_party/toybox/toys/pending/ |
D | lsof.c | 268 if (S_ISSOCK(sb.st_mode)) find_socket(fi, sb.st_ino); in fill_stat() 272 if (!S_ISSOCK(sb.st_mode)) in fill_stat()
|
/third_party/pulseaudio/src/pulsecore/ |
D | socket-util.c | 78 if (S_ISSOCK(st.st_mode)) in pa_socket_peer_to_string()
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
D | ls.c | 112 if (S_ISSOCK(mode)) return '='; in endtype() 280 else if (S_ISSOCK(mode)) color = 256+35; in color_from_mode()
|
/third_party/toybox/toys/posix/ |
D | ls.c | 113 if (S_ISSOCK(mode)) return '='; in endtype() 288 else if (S_ISSOCK(mode)) color = 256+35; in color_from_mode()
|
/third_party/libuv/src/unix/ |
D | tty.c | 357 if (!S_ISSOCK(s.st_mode)) in uv_guess_handle()
|
/third_party/selinux/libselinux/src/ |
D | stringrep.c | 215 if (S_ISSOCK(m)) in mode_to_security_class()
|
/third_party/e2fsprogs/misc/ |
D | e2fuzz.c | 145 S_ISSOCK(inode.i_mode)) in find_metadata_blocks()
|
/third_party/gptfdisk/ |
D | diskio-unix.cc | 89 else if (S_ISSOCK(st.st_mode)) in OpenForRead()
|
/third_party/f2fs-tools/fsck/ |
D | sload.c | 162 } else if (S_ISSOCK(stat.st_mode)) { in set_inode_metadata()
|
/third_party/python/Lib/asyncio/ |
D | unix_events.py | 286 if stat.S_ISSOCK(os.stat(path).st_mode): 452 stat.S_ISSOCK(mode) or 588 is_socket = stat.S_ISSOCK(mode)
|