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

1 2 3

  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 134 #ifndef S_ISDIR
136 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR)
138 #define S_ISDIR(i) (((i) & 0170000) == 040000)
140 #endif /* ! defined (S_ISDIR) */
185 if (S_ISDIR (bits))
  /external/syslinux/com32/include/sys/
stat.h 25 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /external/webrtc/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 18 #ifndef S_ISDIR // Not defined in stat.h on Windows.
19 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR)
169 S_ISDIR(dir_info.st_mode))) {
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 31 #ifndef S_ISDIR // Not defined in stat.h on Windows.
32 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
198 if (!S_ISDIR(path_info.st_mode)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 21 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 40 def S_ISDIR(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 40 def S_ISDIR(mode):
  /external/ImageMagick/MagickCore/
studio.h 194 # if !defined(S_ISDIR)
195 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  /external/ImageMagick/MagickWand/
studio.h 195 # if !defined(S_ISDIR)
196 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  /external/libevent/sample/
http-server.c 25 #ifndef S_ISDIR
26 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
216 if (S_ISDIR(st.st_mode)) {
  /external/python/cpython2/Lib/
stat.py 40 def S_ISDIR(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 165 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 40 def S_ISDIR(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 40 def S_ISDIR(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 40 def S_ISDIR(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 40 def S_ISDIR(mode):
  /toolchain/binutils/binutils-2.27/ld/
lexsup.c 54 #if !defined(S_ISDIR) && defined(S_IFDIR)
55 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
    [all...]
  /bionic/libc/kernel/uapi/linux/
stat.h 36 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h 405 #ifndef S_ISDIR
406 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h 404 #ifndef S_ISDIR
405 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h 420 #ifndef S_ISDIR
421 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h 405 #ifndef S_ISDIR
406 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 135 #define S_ISDIR(m) ((m & _S_IFMT) == _S_IFDIR) ///< directory
  /external/curl/lib/
curl_setup.h 717 /* Define S_ISDIR if not defined by system headers, f.e. MSVC */
718 #if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
719 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /external/kernel-headers/original/uapi/linux/
stat.h 23 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)

Completed in 500 milliseconds

1 2 3