HomeSort by relevance Sort by last modified time
    Searched defs:S_ISLNK (Results 51 - 70 of 70) sorted by null

1 23

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/e2fsprogs/misc/
chattr.c 43 #ifndef S_ISLNK /* So we can compile even with gcc-warn */
45 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
47 # define S_ISLNK(mode) 0
  /external/kernel-headers/original/linux/
stat.h 24 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /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):
  /bootable/recovery/minadbd/
sysdeps.h 87 #define S_ISLNK(m) 0 /* no symlinks on Win32 */
  /external/bison/linux-lib/sys/
stat.h 402 # undef S_ISLNK
447 #ifndef S_ISLNK
449 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
451 # define S_ISLNK(m) 0
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
stat.h 139 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
143 # define S_ISLNK(mode) 0
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/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.7-4.6/sysroot/usr/include/sys/
stat.h 139 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
143 # define S_ISLNK(mode) 0
  /external/bison/darwin-lib/sys/
stat.h 402 # undef S_ISLNK
447 #ifndef S_ISLNK
449 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
451 # define S_ISLNK(m) 0
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_reliantunix.h 255 #if !defined(S_ISLNK) && defined(S_IFLNK)
256 #define S_ISLNK(mode) ((mode&0xA000) == 0xC000)
  /external/grub/stage2/
fsys_minix.c 152 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
352 if (S_ISLNK (INODE->i_mode))
362 printf ("S_ISLNK (%s)\n", dirname);
fsys_ext2fs.c 233 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
602 if (S_ISLNK (INODE->i_mode))
fsys_reiserfs.c 288 #define S_ISLNK(mode) (((mode) & 0170000) == 0120000)
1028 if (S_ISLNK (mode))
    [all...]
  /ndk/sources/host-tools/make-3.81/
remake.c     [all...]
  /system/core/adb/
sysdeps.h 88 #define S_ISLNK(m) 0 /* no symlinks on Win32 */
  /external/openssh/
defines.h 146 #ifndef S_ISLNK
147 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
148 #endif /* S_ISLNK */
  /libcore/luni/src/main/java/libcore/io/
OsConstants.java 27 public static boolean S_ISLNK(int mode) { return (mode & S_IFMT) == S_IFLNK; }
    [all...]
  /external/mksh/src/
sh.h 320 #ifndef S_ISLNK
321 #define S_ISLNK(m) ((m & 0170000) == 0120000)
399 #undef S_ISLNK
400 #define S_ISLNK(m) (/* CONSTCOND */ 0)
    [all...]

Completed in 839 milliseconds

1 23