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

1 2

  /external/e2fsprogs/include/mingw/sys/
stat.h 12 #ifndef S_ISLNK
14 #define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
16 #define S_ISLNK(mode) 0
  /toolchain/binutils/binutils-2.27/libiberty/
unlink-if-ordinary.c 53 #ifndef S_ISLNK
55 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
57 #define S_ISLNK(m) 0
68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
  /system/core/adb/sysdeps/
stat.h 46 // mingw doesn't define S_IFLNK or S_ISLNK.
48 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
  /toolchain/binutils/binutils-2.27/binutils/
rename.c 125 #ifndef S_ISLNK
127 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
129 #define S_ISLNK(m) 0
164 || (!S_ISLNK (s.st_mode)
filemode.c 174 #ifndef S_ISLNK
176 #define S_ISLNK(i) (((i) & S_IFMT) == S_IFLNK)
178 #define S_ISLNK(i) 0
180 #endif /* ! defined (S_ISLNK) */
187 if (S_ISLNK (bits))
  /external/syslinux/com32/include/sys/
stat.h 23 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 19 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /build/make/tools/libhost/
CopyFile.c 30 # define S_ISLNK(s) 0
374 && !S_ISLNK(dstStat.st_mode)
583 } else if (S_ISLNK(srcStat.st_mode)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 55 def S_ISLNK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/e2fsprogs/misc/
chattr.c 44 #ifndef S_ISLNK /* So we can compile even with gcc-warn */
46 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
48 # define S_ISLNK(mode) 0
  /external/e2fsprogs/util/
symlinks.c 28 #ifndef S_ISLNK
29 #define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
295 if (S_ISLNK(st.st_mode)) {
381 else if (S_ISLNK(st.st_mode))
  /external/python/cpython2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/python/cpython3/Modules/
_stat.c 95 #ifndef S_ISLNK
96 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
297 stat_S_ISFUNC(S_ISLNK,
298 "S_ISLNK(mode) -> bool\n\n"
352 if (S_ISLNK(mode)) return 'l';
417 {"S_ISLNK", stat_S_ISLNK, METH_O, stat_S_ISLNK_doc},
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 55 def S_ISLNK(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 55 def S_ISLNK(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 55 def S_ISLNK(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 55 def S_ISLNK(mode):
  /bionic/libc/kernel/uapi/linux/
stat.h 34 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/kernel-headers/original/uapi/linux/
stat.h 21 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/python/cpython3/Lib/
stat.py 66 def S_ISLNK(mode):
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 139 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
143 # define S_ISLNK(mode) 0
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 139 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
143 # define S_ISLNK(mode) 0
  /toolchain/binutils/binutils-2.27/gold/
output.cc 114 // Mingw does not have S_ISLNK.
115 #ifndef S_ISLNK
116 # define S_ISLNK(mode) 0
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 581 def S_ISLNK(m): return (((m) & S_IFMT) == S_IFLNK)

Completed in 2520 milliseconds

1 2