HomeSort by relevance Sort by last modified time
    Searched defs:S_IFBLK (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /system/core/adb/sysdeps/
stat.h 50 // mingw defines S_IFBLK to a different value from bionic.
51 #undef S_IFBLK
52 #define S_IFBLK 0060000
54 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
61 static_assert(S_IFBLK == 0060000, "");
  /bionic/tests/headers/posix/
sys_stat_h_mode_constants.h 30 MACRO(S_IFBLK);
  /external/syslinux/com32/include/sys/
stat.h 16 #define S_IFBLK 0060000
27 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 11 #define S_IFBLK 0060000
23 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /prebuilts/go/darwin-x86/src/syscall/
errors_plan9.go 21 S_IFBLK = 0x6000
  /prebuilts/go/linux-x86/src/syscall/
errors_plan9.go 21 S_IFBLK = 0x6000
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 33 public static final int S_IFBLK = 0060000;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /external/python/cpython2/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /external/python/cpython3/Modules/
_stat.c 58 #ifndef S_IFBLK
59 # define S_IFBLK 0060000
88 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
433 S_IFBLK: block device\n\
517 if (PyModule_AddIntMacro(m, S_IFBLK)) return NULL;
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 96 static final int S_IFBLK = OsConstants.S_IFBLK;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 46 # define S_IFBLK __S_IFBLK
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 143 #define S_IFBLK _S_IFBLK
168 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /bionic/libc/kernel/uapi/linux/
stat.h 27 #define S_IFBLK 0060000
38 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 32 public static final int S_IFBLK = 0060000;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 126 #define S_IFBLK _S_IFBLK
  /external/kernel-headers/original/uapi/linux/
stat.h 13 #define S_IFBLK 0060000
25 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/python/cpython3/Lib/
stat.py 38 S_IFBLK = 0o060000 # block device
56 return S_IFMT(mode) == S_IFBLK
115 (S_IFBLK, "b"),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 113 # define S_IFBLK __S_IFBLK
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 113 # define S_IFBLK __S_IFBLK

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 9