Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 4 of 4) sorted by relevance

/art/libartbase/base/
Dfile_utils.cc571 bool LocationIsOnArtModule(std::string_view full_path) { in LocationIsOnArtModule() argument
577 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()
597 static bool IsLocationOn(std::string_view full_path, in IsLocationOn() argument
625 return android::base::StartsWith(full_path, path_prefix); in IsLocationOn()
628 bool LocationIsOnSystemFramework(std::string_view full_path) { in LocationIsOnSystemFramework() argument
629 return IsLocationOn(full_path, in LocationIsOnSystemFramework()
635 bool LocationIsOnSystemExtFramework(std::string_view full_path) { in LocationIsOnSystemExtFramework() argument
636 return IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
642 IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
648 bool LocationIsOnConscryptModule(std::string_view full_path) { in LocationIsOnConscryptModule() argument
[all …]
Dfile_utils.h174 std::string_view ApexNameFromLocation(std::string_view full_path);
/art/compiler/debug/
Delf_debug_line_writer.h179 std::string full_path(file_name); in WriteCompilationUnit()
195 full_path = package_name + "/" + file_name; in WriteCompilationUnit()
199 auto it2 = files_map.find(full_path); in WriteCompilationUnit()
202 files_map.emplace(full_path, file_index); in WriteCompilationUnit()
/art/runtime/gc/space/
Dimage_space_test.cc42 std::string GetFilenameBase(const std::string& full_path) { in GetFilenameBase() argument
43 size_t slash_pos = full_path.rfind('/'); in GetFilenameBase()
45 size_t dot_pos = full_path.rfind('.'); in GetFilenameBase()
48 return full_path.substr(slash_pos + 1u, dot_pos - (slash_pos + 1u)); in GetFilenameBase()