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

1 2

  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 150 #ifndef S_ISCHR
152 #define S_ISCHR(i) (((i) & S_IFMT) == S_IFCHR)
154 #define S_ISCHR(i) 0
156 #endif /* ! defined (S_ISCHR) */
191 if (S_ISCHR (bits))
  /external/curl/src/
tool_doswin.c 72 #ifndef S_ISCHR
74 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
76 # define S_ISCHR(m) (0) /* cannot tell if file is a device */
589 if(base && ((stat(base, &st_buf)) == 0) && (S_ISCHR(st_buf.st_mode))) {
  /external/syslinux/com32/include/sys/
stat.h 26 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 22 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 43 def S_ISCHR(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 43 def S_ISCHR(mode):
  /external/python/cpython2/Lib/
stat.py 43 def S_ISCHR(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 167 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 43 def S_ISCHR(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 43 def S_ISCHR(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 43 def S_ISCHR(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 43 def S_ISCHR(mode):
  /bionic/libc/kernel/uapi/linux/
stat.h 37 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 134 #define S_ISCHR(m) ((m & _S_IFMT) == _S_IFCHR) ///< char special
  /external/kernel-headers/original/uapi/linux/
stat.h 24 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /external/python/cpython3/Include/
pyport.h 251 #ifndef S_ISCHR
252 #define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR)
  /external/python/cpython3/Lib/
stat.py 50 def S_ISCHR(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 132 #define S_ISCHR(mode) __S_ISTYPE((mode), __S_IFCHR)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 132 #define S_ISCHR(mode) __S_ISTYPE((mode), __S_IFCHR)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 566 #ifndef S_ISCHR
567 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 587 def S_ISCHR(m): return (((m) & S_IFMT) == S_IFCHR)
  /libcore/luni/src/main/java/android/system/
OsConstants.java 48 public static boolean S_ISCHR(int mode) { return (mode & S_IFMT) == S_IFCHR; }
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 880 milliseconds

1 2