Home
last modified time | relevance | path

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

/art/libartbase/base/
Dfile_utils.cc389 bool LocationIsOnArtModule(const char* full_path) { in LocationIsOnArtModule() argument
395 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()
415 static bool IsLocationOnModule(const char* full_path, in IsLocationOnModule() argument
443 return android::base::StartsWith(full_path, path_prefix); in IsLocationOnModule()
446 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() argument
447 return IsLocationOnModule(full_path, in LocationIsOnSystemFramework()
453 bool LocationIsOnConscryptModule(const char* full_path) { in LocationIsOnConscryptModule() argument
455 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()
458 bool LocationIsOnApex(const char* full_path) { in LocationIsOnApex() argument
459 return android::base::StartsWith(full_path, kApexDefaultPath); in LocationIsOnApex()
[all …]
/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.cc44 std::string GetFilenameBase(const std::string& full_path) { in GetFilenameBase() argument
45 size_t slash_pos = full_path.rfind('/'); in GetFilenameBase()
47 size_t dot_pos = full_path.rfind('.'); in GetFilenameBase()
50 return full_path.substr(slash_pos + 1u, dot_pos - (slash_pos + 1u)); in GetFilenameBase()