HomeSort by relevance Sort by last modified time
    Searched defs:S_ISDIR (Results 26 - 50 of 51) sorted by null

12 3

  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 37 #define S_ISDIR(m) (((m) & S_IFDIR) == S_IFDIR)
294 if(S_ISDIR(stat_buf.st_mode)) {
  /external/python/cpython2/Include/
pyport.h 404 #ifndef S_ISDIR
405 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  /external/python/cpython3/Include/
pyport.h 247 #ifndef S_ISDIR
248 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  /external/python/cpython3/Lib/
stat.py 46 def S_ISDIR(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 131 #define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 131 #define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR)
  /external/clang/lib/Frontend/
CacheTokens.cpp 34 #ifndef S_ISDIR
35 #define S_ISDIR(x) (((x)&_S_IFDIR)!=0)
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyport.h 408 #ifndef S_ISDIR
409 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
pyport.h 408 #ifndef S_ISDIR
409 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyport.h 408 #ifndef S_ISDIR
409 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyport.h 408 #ifndef S_ISDIR
409 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldmain.c 47 #if !defined(S_ISDIR) && defined(S_IFDIR)
48 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
568 if (stat (path, &s) == 0 && S_ISDIR (s.st_mode))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 561 #ifndef S_ISDIR
562 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
    [all...]
  /external/libvncserver/libvncserver/
rfbserver.c 106 #define S_ISDIR(m) (((m) & S_IFDIR) == S_IFDIR)
    [all...]
  /external/libxml2/
xmlIO.c 52 #ifndef S_ISDIR
54 # define S_ISDIR(x) _S_ISDIR(x)
57 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
59 # define S_ISDIR(m) (((m) & _S_IFMT) == S_IFDIR)
697 #ifdef S_ISDIR
698 if (S_ISDIR(stat_buffer.st_mode))
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 585 def S_ISDIR(m): return (((m) & S_IFMT) == S_IFDIR)
  /libcore/luni/src/main/java/android/system/
OsConstants.java 53 public static boolean S_ISDIR(int mode) { return (mode & S_IFMT) == S_IFDIR; }
    [all...]
  /external/sqlite/dist/orig/
shell.c 1028 #ifndef S_ISDIR
1029 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
    [all...]
  /external/sqlite/dist/
shell.c 1034 #ifndef S_ISDIR
1035 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/26/
android.jar 

Completed in 469 milliseconds

12 3