Home
last modified time | relevance | path

Searched refs:S_ISLNK (Results 1 – 8 of 8) sorted by relevance

/system/core/adb/sysdeps/
Dstat.h48 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) macro
/system/core/adb/
Dfile_sync_client.cpp71 return S_ISREG(mode) || S_ISLNK(mode); in should_push_file()
659 if (S_ISLNK(st->st_mode)) { in sync_stat_fallback()
682 if (S_ISLNK(mode)) { in sync_send()
890 (S_ISLNK(ci.mode & st.st_mode) && st.st_mtime >= ci.time)) { in copy_local_dir_remote()
1032 } else if (S_ISLNK(mode)) { in remote_build_list()
Dfile_sync_service.cpp382 bool do_unlink = (lstat(path.c_str(), &st) == -1) || S_ISREG(st.st_mode) || S_ISLNK(st.st_mode); in do_send()
387 if (S_ISLNK(mode)) { in do_send()
/system/core/libcutils/
Dfs.c238 if (S_ISLNK(sb.st_mode)) { in fs_mkdirs()
/system/core/base/
Dfile.cpp180 bool file_type_removable = (result == 0 && (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))); in RemoveFileIfExists()
/system/core/cpio/
Dmkbootfs.c264 } else if(S_ISLNK(s.st_mode)) { in _archive()
/system/extras/ext4_utils/
Dmake_ext4fs.c262 } else if (S_ISLNK(stat.st_mode)) { in build_directory_structure()
/system/update_engine/common/
Dutils.cc573 return lstat(path, &stbuf) == 0 && S_ISLNK(stbuf.st_mode) != 0; in IsSymlink()