HomeSort by relevance Sort by last modified time
    Searched refs:S_ISLNK (Results 101 - 125 of 162) sorted by null

1 2 3 45 6 7

  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 22 import static android.system.OsConstants.S_ISLNK;
524 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
    [all...]
  /external/chromium_org/base/
platform_file_posix.cc 274 info->is_symbolic_link = S_ISLNK(file_info.st_mode);
file_util_posix.cc 106 if (S_ISLNK(stat_info.st_mode)) {
622 if (S_ISLNK(st.st_mode))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 145 return stat.S_ISLNK(st.st_mode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 145 return stat.S_ISLNK(st.st_mode)
  /system/core/cpio/
mkbootfs.c 260 } else if(S_ISLNK(s.st_mode)) {
  /system/core/toolbox/upstream-netbsd/bin/rm/
rm.c 547 if (!stdin_ok || S_ISLNK(sp->st_mode) ||
  /ndk/sources/host-tools/make-3.81/
remake.c     [all...]
  /frameworks/native/cmds/installd/
commands.c 81 } else if (S_ISLNK(libStat.st_mode)) {
234 } else if (S_ISLNK(libStat.st_mode)) {
    [all...]
  /bootable/recovery/minadbd/
sysdeps.h 87 #define S_ISLNK(m) 0 /* no symlinks on Win32 */
  /external/chromium_org/base/files/
file_posix.cc 122 is_symbolic_link = S_ISLNK(stat_info.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 320 #ifndef S_ISLNK
321 #define S_ISLNK(m) ((m & 0170000) == 0120000)
400 #undef S_ISLNK
401 #define S_ISLNK(m) (/* CONSTCOND */ 0)
    [all...]
eval.c     [all...]
  /external/oprofile/opjitconv/
opjitconv.c 279 if (S_ISLNK(file_stat.st_mode)) {
  /system/core/adb/
sysdeps.h 89 #define S_ISLNK(m) 0 /* no symlinks on Win32 */
  /system/extras/tests/fstest/
perm_checker.c 400 } else if (S_ISLNK(s.st_mode)) {
  /external/qemu/distrib/ext4_utils/src/
make_ext4fs.c 225 } else if (S_ISLNK(stat.st_mode)) {
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 454 if (OsConstants.S_ISLNK(stat.st_mode)) {
    [all...]
  /libcore/luni/src/main/java/android/system/
OsConstants.java 54 public static boolean S_ISLNK(int mode) { return (mode & S_IFMT) == S_IFLNK; }
    [all...]
  /system/extras/ext4_utils/
make_ext4fs.c 229 } else if (S_ISLNK(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 1888 milliseconds

1 2 3 45 6 7