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

1 2 3 4 5 6 7

  /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)))
  /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
  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 44 #if !defined(S_ISLNK)
45 #error S_ISLNK
  /frameworks/base/libs/androidfw/
misc.cpp 59 #if defined(S_ISLNK)
60 else if (S_ISLNK(sb.st_mode))
  /toolchain/binutils/binutils-2.27/binutils/
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))
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)
  /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)
  /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)
  /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/Demo/comparisons/
systemtest.py 56 if S_ISLNK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/ltp/testcases/kernel/fs/mongo/
mongo_slinks.c 57 if (!(S_ISLNK(statbuf.st_mode))) {
  /external/ltp/testcases/kernel/syscalls/symlink/
symlink04.c 126 if (!S_ISLNK(stat_buf.st_mode)) {
symlink05.c 127 if (!S_ISLNK(stat_buf.st_mode)) {
  /external/python/cpython2/Demo/comparisons/
systemtest.py 56 if S_ISLNK(mode):
  /external/python/cpython2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/toybox/toys/posix/
cpio.c 147 } else if (S_ISLNK(mode)) {
193 if (!S_ISREG(mode) && !S_ISLNK(mode) && !geteuid()
242 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) st.st_size = 0;
260 if (S_ISLNK(st.st_mode)) {
rm.c 39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
  /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/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))

Completed in 290 milliseconds

1 2 3 4 5 6 7