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

1 2

  /external/libgsm/inc/
toast.h 42 #ifndef S_ISREG
43 #define S_ISREG(x) ((x) & S_IFREG)
44 #endif /* S_ISREG */
  /external/expat/xmlwf/
readfilemap.c 55 #ifndef S_ISREG
62 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
63 #endif /* not S_ISREG */
97 if (!S_ISREG(sb.st_mode)) {
  /external/syslinux/com32/include/sys/
stat.h 24 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 20 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 49 def S_ISREG(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 49 def S_ISREG(mode):
  /external/ImageMagick/MagickCore/
studio.h 197 # if !defined(S_ISREG)
198 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  /external/ImageMagick/MagickWand/
studio.h 198 # if !defined(S_ISREG)
199 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  /external/python/cpython2/Lib/
stat.py 49 def S_ISREG(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 169 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 49 def S_ISREG(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 49 def S_ISREG(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 49 def S_ISREG(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 49 def S_ISREG(mode):
  /bionic/libc/kernel/uapi/linux/
stat.h 35 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h 401 #ifndef S_ISREG
402 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h 400 #ifndef S_ISREG
401 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h 416 #ifndef S_ISREG
417 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h 401 #ifndef S_ISREG
402 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 137 #define S_ISREG(m) ((m & _S_IFMT) == _S_IFREG) ///< regular file
  /external/curl/lib/
curl_setup.h 712 /* Define S_ISREG if not defined by system headers, f.e. MSVC */
713 #if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
714 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /external/kernel-headers/original/uapi/linux/
stat.h 22 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 36 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
491 (stat(path, &stat_buf) < 0) || (!(S_ISREG(stat_buf.st_mode))) ) {
  /external/python/cpython2/Include/
pyport.h 400 #ifndef S_ISREG
401 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
  /external/python/cpython3/Include/
pyport.h 243 #ifndef S_ISREG
244 #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)

Completed in 524 milliseconds

1 2