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/libcutils/
Dfs.cpp241 if (S_ISLNK(sb.st_mode)) { in fs_mkdirs()
/system/core/adb/daemon/
Dfile_sync_service.cpp505 (S_ISLNK(st.st_mode) && !S_ISLNK(mode)); in send_impl()
513 if (S_ISLNK(mode)) { in send_impl()
/system/memory/libmeminfo/libdmabufinfo/
Ddmabufinfo.cpp93 if (S_ISLNK(p_statbuf.st_mode) == 1) { in is_symlink()
/system/core/cpio/
Dmkbootfs.c265 } else if(S_ISLNK(s.st_mode)) { in _archive()
/system/core/adb/client/
Dfile_sync_client.cpp82 return S_ISREG(mode) || S_ISLNK(mode); in should_push_file()
1012 if (S_ISLNK(st->st_mode)) { in sync_stat_fallback()
1043 if (S_ISLNK(mode)) { in sync_send()
1548 } else if (S_ISLNK(mode)) { in remote_build_list()
/system/libbase/
Dfile.cpp373 bool file_type_removable = (result == 0 && (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))); in RemoveFileIfExists()
/system/update_engine/common/
Dutils.cc489 return lstat(path, &stbuf) == 0 && S_ISLNK(stbuf.st_mode) != 0; in IsSymlink()