HomeSort by relevance Sort by last modified time
    Searched defs:S_ISDIR (Results 76 - 79 of 79) sorted by null

1 2 34

  /external/libxml2/
xmlIO.c 68 # ifndef S_ISDIR
70 # define S_ISDIR(x) _S_ISDIR(x)
79 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
784 #ifdef S_ISDIR
785 if (S_ISDIR(stat_buffer.st_mode))
    [all...]
  /external/openssh/
defines.h 138 #ifndef S_ISDIR
139 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
140 #endif /* S_ISDIR */
  /external/openssl/apps/
apps.c     [all...]
  /libcore/luni/src/main/java/libcore/io/
OsConstants.java 24 public static boolean S_ISDIR(int mode) { return (mode & S_IFMT) == S_IFDIR; }
    [all...]

Completed in 103 milliseconds

1 2 34