HomeSort by relevance Sort by last modified time
    Searched refs:S_ISLNK (Results 26 - 50 of 91) sorted by null

12 3 4

  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /ndk/sources/host-tools/sed-4.2.1/lib/
sys_stat.in.h 66 # undef S_ISLNK
111 #ifndef S_ISLNK
113 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
115 # define S_ISLNK(m) 0
  /external/kernel-headers/original/linux/
stat.h 24 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /libcore/luni/src/main/native/
realpath.cpp 92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode)) {
  /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/openssh/openbsd-compat/
realpath.c 145 if (S_ISLNK(sb.st_mode)) {
  /external/oprofile/libutil/
op_file.c 102 S_ISLNK(lstat_buf.st_mode)) {
  /frameworks/base/core/jni/
android_os_ParcelFileDescriptor.cpp 91 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
  /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))
  /bionic/libc/bionic/
realpath.c 172 if (S_ISLNK(sb.st_mode)) {
  /bootable/recovery/minzip/
DirUtil.c 253 if (S_ISLNK(st.st_mode)) {
  /external/chromium/base/
platform_file_posix.cc 191 info->is_symbolic_link = S_ISLNK(file_info.st_mode);
  /frameworks/native/libs/utils/
misc.cpp 152 else if (S_ISLNK(sb.st_mode))
  /external/chromium/chrome/browser/
process_singleton_linux_uitest.cc 109 ASSERT_TRUE(S_ISLNK(statbuf.st_mode));
115 ASSERT_TRUE(S_ISLNK(statbuf.st_mode));
  /system/core/libcutils/
dir_hash.c 56 if (S_ISLNK(sb.st_mode)) {
92 if (S_ISLNK(sb.st_mode) || S_ISREG(sb.st_mode)) {
  /system/core/adb/
file_sync_client.c 385 else if (S_ISLNK(mode))
649 if(!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) {
714 (S_ISLNK(ci->mode & mode) && timestamp >= ci->time))
828 } else if (S_ISREG(mode) || S_ISLNK(mode)) {
916 (S_ISLNK(ci->mode & mode) && timestamp >= ci->time))
964 if(S_ISREG(mode) || S_ISLNK(mode) || S_ISCHR(mode) || S_ISBLK(mode)) {
  /external/bluetooth/glib/gio/
glocalfileinfo.c 151 #ifdef S_ISLNK
186 #endif /* S_ISLNK */
919 #ifdef S_ISLNK
920 else if (S_ISLNK (statbuf->st_mode))
    [all...]
  /build/libs/host/
CopyFile.c 363 && !S_ISLNK(dstStat.st_mode)
622 } else if (S_ISLNK(srcStat.st_mode)) {
  /external/openssh/
defines.h 146 #ifndef S_ISLNK
147 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
148 #endif /* S_ISLNK */
  /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

Completed in 1270 milliseconds

12 3 4