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

1 2 3 4 5 6 7 8 91011>>

  /system/core/adb/sysdeps/
stat.h 46 // mingw doesn't define S_IFLNK or S_ISLNK.
47 #define S_IFLNK 0120000
48 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
59 static_assert(S_IFLNK == 0120000, "");
  /toolchain/binutils/binutils-2.27/libiberty/
unlink-if-ordinary.c 54 #ifdef S_IFLNK
55 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/strace/xlat/
modetypes.h 20 #if defined(S_IFLNK) || (defined(HAVE_DECL_S_IFLNK) && HAVE_DECL_S_IFLNK)
21 XLAT(S_IFLNK),
  /external/syslinux/com32/include/sys/
stat.h 14 #define S_IFLNK 0120000
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 9 #define S_IFLNK 0120000
19 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /bionic/tests/headers/posix/
sys_stat_h_mode_constants.h 35 MACRO(S_IFLNK);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /external/python/cpython2/Lib/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 35 S_IFLNK = 0120000
56 return S_IFMT(mode) == S_IFLNK
  /external/python/cpython3/Lib/
stat.py 41 S_IFLNK = 0o120000 # symbolic link
68 return S_IFMT(mode) == S_IFLNK
113 ((S_IFLNK, "l"),
  /external/strace/tests/
umode_t.c 73 test_syscall(S_IFLNK | 060);
mknod.c 42 rc = call_mknod(S_IFLNK | 060, 0);
43 printf("mknod(\"%s\", S_IFLNK|060) = %ld %s (%m)\n",
mknodat.c 42 rc = call_mknodat(S_IFLNK | 060, 0);
43 printf("mknodat(-1, \"%s\", S_IFLNK|060) = %ld %s (%m)\n",
  /external/strace/tests-m32/
umode_t.c 73 test_syscall(S_IFLNK | 060);
  /external/strace/tests-mx32/
umode_t.c 73 test_syscall(S_IFLNK | 060);
  /bionic/libc/kernel/uapi/linux/
stat.h 25 #define S_IFLNK 0120000
34 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/kernel-headers/original/uapi/linux/
stat.h 11 #define S_IFLNK 0120000
21 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 175 #ifdef S_IFLNK
176 #define S_ISLNK(i) (((i) & S_IFMT) == S_IFLNK)
177 #else /* ! defined (S_IFLNK) */
179 #endif /* ! defined (S_IFLNK) */
rename.c 126 #ifdef S_IFLNK
127 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 92 static final int S_IFLNK = OsConstants.S_IFLNK;
  /external/ltp/testcases/kernel/syscalls/lstat/
lstat03.c 82 ((stat_buf.st_mode & S_IFMT) != S_IFLNK) ||

Completed in 961 milliseconds

1 2 3 4 5 6 7 8 91011>>