HomeSort by relevance Sort by last modified time
    Searched refs:S_ISSOCK (Results 1 - 25 of 61) sorted by null

1 2 3

  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 47 #if !defined(S_ISSOCK)
48 #error S_ISSOCK
  /frameworks/base/libs/androidfw/
misc.cpp 63 #if defined(S_ISSOCK)
64 else if (S_ISSOCK(sb.st_mode))
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 166 #ifndef S_ISSOCK
168 #define S_ISSOCK(i) (((i) & S_IFMT) == S_IFSOCK)
170 #define S_ISSOCK(i) 0
172 #endif /* ! defined (S_ISSOCK) */
193 if (S_ISSOCK (bits))
  /external/syslinux/com32/include/sys/
stat.h 29 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 25 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 58 def S_ISSOCK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 58 def S_ISSOCK(mode):
  /external/python/cpython2/Lib/
stat.py 58 def S_ISSOCK(mode):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 58 def S_ISSOCK(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 58 def S_ISSOCK(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 58 def S_ISSOCK(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 58 def S_ISSOCK(mode):
  /bionic/libc/kernel/uapi/linux/
stat.h 40 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  /external/kernel-headers/original/uapi/linux/
stat.h 27 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  /external/vboot_reference/futility/
file_type.c 114 } else if (S_ISSOCK(sb.st_mode)) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 138 #define S_ISSOCK(m) ((m & _S_IFMT) == _S_IFSOCK) ///< socket
  /external/python/cpython3/Lib/
stat.py 70 def S_ISSOCK(mode):
  /external/python/cpython3/Modules/
_stat.c 99 #ifndef S_ISSOCK
100 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
301 stat_S_ISFUNC(S_ISSOCK,
302 "S_ISSOCK(mode) -> bool\n\n"
357 if (S_ISSOCK(mode)) return 's';
418 {"S_ISSOCK", stat_S_ISSOCK, METH_O, stat_S_ISSOCK_doc},
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/src/
hog.c 118 if (S_ISSOCK(file_stat.st_mode)) {
  /external/autotest/client/site_tests/security_OpenFDs/
security_OpenFDs.py 173 stat.S_ISSOCK(x) or
  /external/toybox/toys/pending/
test.c 76 else if (id == 9) toys.exitval = !S_ISSOCK(st.st_mode); // S
lsof.c 268 if (S_ISSOCK(sb.st_mode)) find_socket(fi, sb.st_ino);
272 if (!S_ISSOCK(sb.st_mode))
  /frameworks/base/tools/aapt2/util/
Files.cpp 94 #if defined(S_ISSOCK)
95 } else if (S_ISSOCK(sb.st_mode)) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 576 #ifndef S_ISSOCK
578 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
580 # define S_ISSOCK(m) 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 148 # define S_ISSOCK(mode) __S_ISTYPE((mode), __S_IFSOCK)
150 # define S_ISSOCK(mode) 0

Completed in 458 milliseconds

1 2 3