/external/python/cpython3/Modules/ |
D | _stat.c | 99 #ifndef S_ISSOCK 100 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) macro 301 stat_S_ISFUNC(S_ISSOCK, 357 if (S_ISSOCK(mode)) return 's'; in filetype()
|
/external/python/cpython2/Lib/ |
D | stat.py | 58 def S_ISSOCK(mode): function
|
/external/kernel-headers/original/uapi/linux/ |
D | stat.h | 27 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/external/vboot_reference/futility/ |
D | file_type.c | 114 } else if (S_ISSOCK(sb.st_mode)) { in futil_file_type()
|
/external/python/cpython3/Lib/ |
D | stat.py | 70 def S_ISSOCK(mode): function
|
D | pathlib.py | 12 from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO 1450 return S_ISSOCK(self.stat().st_mode)
|
/external/u-boot/include/linux/ |
D | stat.h | 28 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/external/u-boot/fs/yaffs2/ |
D | yportenv.h | 252 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) macro
|
/external/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()
|
/external/autotest/client/site_tests/security_OpenFDs/ |
D | security_OpenFDs.py | 173 stat.S_ISSOCK(x) or
|
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/ |
D | hog.c | 118 if (S_ISSOCK(file_stat.st_mode)) { in main()
|
/external/toybox/toys/posix/ |
D | ls.c | 113 if (S_ISSOCK(mode)) return '='; in endtype() 281 else if (S_ISSOCK(mode)) color = 256+35; in color_from_mode()
|
D | file.c | 439 else if (S_ISSOCK(sb.st_mode)) what = "socket"; in file_main()
|
/external/python/cpython3/Lib/asyncio/ |
D | unix_events.py | 274 if stat.S_ISSOCK(os.stat(path).st_mode): 437 stat.S_ISSOCK(mode) or 564 is_socket = stat.S_ISSOCK(mode)
|
/external/gptfdisk/ |
D | diskio-unix.cc | 85 else if (S_ISSOCK(st.st_mode)) in OpenForRead()
|
/external/selinux/libselinux/src/ |
D | stringrep.c | 214 if (S_ISSOCK(m)) in mode_to_security_class()
|
/external/e2fsprogs/misc/ |
D | e2fuzz.c | 145 S_ISSOCK(inode.i_mode)) in find_metadata_blocks()
|
/external/f2fs-tools/fsck/ |
D | sload.c | 145 } else if (S_ISSOCK(stat.st_mode)) { in set_inode_metadata()
|
/external/selinux/python/sepolicy/sepolicy/ |
D | generate.py | 996 if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]): 1061 if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]): 1094 if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
|
/external/python/cpython2/Lib/plat-atheos/ |
D | IN.py | 593 def S_ISSOCK(m): return (((m) & S_IFMT) == S_IFSOCK) function
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 51 .. function:: S_ISSOCK(mode)
|
/external/python/cpython3/Doc/library/ |
D | stat.rst | 56 .. function:: S_ISSOCK(mode)
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | PathV2.inc | 339 else if (S_ISSOCK(status.st_mode))
|
/external/mksh/src/ |
D | sh.h | 353 #ifndef S_ISSOCK 354 #define S_ISSOCK(m) ((m & 0170000) == 0140000) macro
|
/external/wayland/src/ |
D | wayland-server.c | 1327 if (sock_fd < 0 || fstat(sock_fd, &buf) < 0 || !S_ISSOCK(buf.st_mode)) { in wl_display_add_socket_fd()
|