Searched refs:is_symlink (Results 1 – 14 of 14) sorted by relevance
/aosp12/system/apex/tools/ |
H A D | deapexer.py | 41 is_symlink=False): argument 47 self._is_symlink = is_symlink 64 def is_symlink(self): member in ApexImageEntry 69 return not self.is_directory and not self.is_symlink 173 is_symlink = bits[1]=='2' 176 if not is_symlink and not is_directory: 203 is_directory=is_directory, is_symlink=is_symlink, ino=ino,
|
/aosp12/art/build/apex/ |
H A D | art_apex_test.py | 73 def __init__(self, name, is_dir, is_exec, is_symlink, size): argument 77 self.is_symlink = is_symlink 82 % (self.name, self.is_dir, self.is_exec, self.is_symlink, self.size) 107 is_symlink = os.path.islink(filepath) 108 if is_symlink: 113 apex_map[basename] = FSObject(basename, is_dir, is_exec, is_symlink, size) 176 is_symlink = get_octal(bits, 4) == 2 181 is_symlink = False 185 dir_map[base] = FSObject(base, is_dir, is_exec, is_symlink, size) 246 if not fs_object.is_symlink:
|
/aosp12/frameworks/compile/mclinker/lib/Support/ |
H A D | Directory.cpp | 22 bool is_symlink(FileStatus f) { in is_symlink() function 104 if (status_known(m_SymLinkStatus) && !is_symlink(m_SymLinkStatus)) { in status()
|
/aosp12/hardware/google/graphics/common/memtrack-pixel/core/ |
H A D | filesystem.h | 54 bool is_symlink(const path& p);
|
H A D | filesystem.cpp | 28 bool is_symlink(const path& p) { in is_symlink() function
|
H A D | Memtrack.cpp | 65 if (filesystem::exists(devPath) && filesystem::is_symlink(devPath)) { in getGpuDeviceInfo()
|
/aosp12/system/apex/tests/native/ |
H A D | apex_shared_libraries_test.cpp | 77 if (!fs::is_symlink(p, ec)) { in TEST()
|
/aosp12/system/apex/apexd/ |
H A D | apex_shim.cpp | 137 if (fs::is_symlink(status)) { in ValidateShimApex()
|
H A D | apexd_test.cpp | 1757 if (fs::is_symlink(p)) { in TEST_F() 1848 if (fs::is_symlink(p)) { in TEST_F()
|
H A D | apexservice_test.cpp | 553 if (entry.is_symlink(ec)) { in ListSlavesOfDmDevice()
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/include/automotive/ |
H A D | filesystem | 172 bool is_symlink(file_status s) noexcept; 173 bool is_symlink(const path& p); 174 bool is_symlink(const path& p, error_code& ec) noexcept; 1789 inline _LIBCPP_INLINE_VISIBILITY bool is_symlink(file_status __s) noexcept { 1793 inline _LIBCPP_INLINE_VISIBILITY bool is_symlink(const path& __p) { 1794 return is_symlink(__symlink_status(__p)); 1797 inline _LIBCPP_INLINE_VISIBILITY bool is_symlink(const path& __p, 1799 return is_symlink(__symlink_status(__p, &__ec)); 1804 !is_symlink(__s); 2122 bool is_symlink() const { return __get_sym_ft() == file_type::symlink; } [all …]
|
/aosp12/system/security/ondevice-signing/ |
H A D | VerityUtils.cpp | 249 } else if (it->is_symlink()) { in verifyAllFilesInVerity()
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/src/filesystem/ |
H A D | operations.cpp | 592 if (is_symlink(f)) { in __copy() 1069 set_sym_perms = is_symlink(st); in __permissions() 1681 if (!_VSTD_FS::exists(st) || !_VSTD_FS::is_symlink(st)) { in __do_refresh() 1734 if (!_VSTD_FS::exists(st) || !_VSTD_FS::is_symlink(st)) { in __do_refresh()
|
H A D | directory_iterator.cpp | 364 if (m_ec || is_symlink(st) || !is_directory(st)) in __try_recursion()
|