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

1 2

  /system/core/adb/sysdeps/
stat.h 53 #undef S_ISBLK
54 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 142 #ifndef S_ISBLK
144 #define S_ISBLK(i) (((i) & S_IFMT) == S_IFBLK)
146 #define S_ISBLK(i) 0
148 #endif /* ! defined (S_ISBLK) */
189 if (S_ISBLK (bits))
  /external/syslinux/com32/include/sys/
stat.h 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 23 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 46 def S_ISBLK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 46 def S_ISBLK(mode):
  /external/python/cpython2/Lib/
stat.py 46 def S_ISBLK(mode):
  /external/python/cpython3/Modules/
_stat.c 87 #ifndef S_ISBLK
88 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
285 stat_S_ISFUNC(S_ISBLK,
286 "S_ISBLK(mode) -> bool\n\n"
354 if (S_ISBLK(mode)) return 'b';
414 {"S_ISBLK", stat_S_ISBLK, METH_O, stat_S_ISBLK_doc},
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 168 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /bionic/libc/kernel/uapi/linux/
stat.h 38 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 136 #define S_ISBLK(m) ((m & _S_IFMT) == _S_IFBLK) ///< block special
  /external/kernel-headers/original/uapi/linux/
stat.h 25 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/python/cpython3/Lib/
stat.py 54 def S_ISBLK(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 133 #define S_ISBLK(mode) __S_ISTYPE((mode), __S_IFBLK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 133 #define S_ISBLK(mode) __S_ISTYPE((mode), __S_IFBLK)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 571 #ifndef S_ISBLK
572 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 589 def S_ISBLK(m): return (((m) & S_IFMT) == S_IFBLK)
  /libcore/luni/src/main/java/android/system/
OsConstants.java 43 public static boolean S_ISBLK(int mode) { return (mode & S_IFMT) == S_IFBLK; }
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 454 milliseconds

1 2