Home
last modified time | relevance | path

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

/art/libartbase/base/
Dfile_utils.cc390 bool LocationIsOnArtModule(const char* full_path) { in LocationIsOnArtModule() argument
396 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()
416 static bool IsLocationOnModule(const char* full_path, in IsLocationOnModule() argument
444 return android::base::StartsWith(full_path, path_prefix); in IsLocationOnModule()
447 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() argument
448 return IsLocationOnModule(full_path, in LocationIsOnSystemFramework()
454 bool LocationIsOnSystemExtFramework(const char* full_path) { in LocationIsOnSystemExtFramework() argument
455 return IsLocationOnModule(full_path, in LocationIsOnSystemExtFramework()
461 bool LocationIsOnConscryptModule(const char* full_path) { in LocationIsOnConscryptModule() argument
463 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()
[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()