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

1 2 3

  /bionic/libc/kernel/uapi/linux/
stat.h 36 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /development/ndk/platforms/android-3/include/linux/
stat.h 29 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /development/ndk/platforms/android-L/include/linux/
stat.h 36 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/kernel-headers/original/uapi/linux/
stat.h 19 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/e2fsprogs/util/
symlinks.c 24 #ifndef S_ISLNK
25 #define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
291 if (S_ISLNK(st.st_mode)) {
377 else if (S_ISLNK(st.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/oprofile/libutil/
op_file.c 102 S_ISLNK(lstat_buf.st_mode)) {
  /external/bison/lib/
sys_stat.in.h 90 # undef S_ISLNK
135 #ifndef S_ISLNK
137 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
139 # define S_ISLNK(m) 0
  /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)
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 188 if (S_ISLNK(sb.st_mode)) {
  /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/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...]
  /build/libs/host/
CopyFile.c 363 && !S_ISLNK(dstStat.st_mode)
622 } else if (S_ISLNK(srcStat.st_mode)) {
  /external/chromium_org/chrome/browser/
process_singleton_posix_unittest.cc 137 ASSERT_TRUE(S_ISLNK(statbuf.st_mode));
143 ASSERT_TRUE(S_ISLNK(statbuf.st_mode));
  /bootable/recovery/minadbd/
sysdeps.h 87 #define S_ISLNK(m) 0 /* no symlinks on Win32 */
  /external/chromium_org/base/files/
file_posix.cc 120 is_symbolic_link = S_ISLNK(stat_info.st_mode);
file_util_posix.cc 106 if (S_ISLNK(stat_info.st_mode)) {
622 if (S_ISLNK(st.st_mode))
  /external/e2fsprogs/ext2ed/
dir_com.c 268 if (S_ISLNK (type_data.u.t_ext2_inode.i_mode)) {/* Symbolic link ? */
inode_com.c 251 if (S_ISLNK (type_data.u.t_ext2_inode.i_mode)) {
  /external/ltrace/
options.c 502 } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
  /external/mksh/src/
sh.h 325 #ifndef S_ISLNK
326 #define S_ISLNK(m) ((m & 0170000) == 0120000)
419 #undef S_ISLNK
420 #define S_ISLNK(m) (/* CONSTCOND */ 0)
    [all...]
eval.c     [all...]
  /external/oprofile/opjitconv/
opjitconv.c 279 if (S_ISLNK(file_stat.st_mode)) {
  /bionic/libc/bionic/
fts.c 853 if (S_ISLNK(sbp->st_mode))
  /bootable/recovery/minzip/
Zip.c 14 #include <sys/stat.h> // for S_ISLNK()
494 return S_ISLNK(pEntry->externalFileAttributes >> 16);
    [all...]

Completed in 764 milliseconds

1 2 3