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

1 2 3 4 5 6 7 8 910

  /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, "");
  /bionic/tests/headers/posix/
sys_stat_h_mode_constants.h 35 MACRO(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)
  /prebuilts/go/darwin-x86/src/syscall/
errors_plan9.go 23 S_IFLNK = 0xa000
types_dragonfly.go 108 S_IFLNK = C.S_IFLNK
types_freebsd.go 193 S_IFLNK = C.S_IFLNK
  /prebuilts/go/linux-x86/src/syscall/
errors_plan9.go 23 S_IFLNK = 0xa000
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 31 public static final int S_IFLNK = 0120000;
  /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
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 92 static final int S_IFLNK = OsConstants.S_IFLNK;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 52 # define S_IFLNK __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
  /bionic/libc/kernel/uapi/linux/
stat.h 25 #define S_IFLNK 0120000
34 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 30 public static final int S_IFLNK = 0120000;
  /external/kernel-headers/original/uapi/linux/
stat.h 11 #define S_IFLNK 0120000
21 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/python/cpython3/Include/
pyport.h 237 #ifndef S_IFLNK
238 /* Windows doesn't define S_IFLNK but posixmodule.c maps
239 * IO_REPARSE_TAG_SYMLINK to S_IFLNK */
240 # define S_IFLNK 0120000
  /external/python/cpython3/Lib/
stat.py 41 S_IFLNK = 0o120000 # symbolic link
68 return S_IFMT(mode) == S_IFLNK
113 ((S_IFLNK, "l"),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 119 # define S_IFLNK __S_IFLNK
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 119 # define S_IFLNK __S_IFLNK

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 910