Home
last modified time | relevance | path

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

/art/libartbase/base/
Dfile_utils.cc329 static bool IsLocationOnModule(const char* full_path, in IsLocationOnModule() argument
357 return android::base::StartsWith(full_path, path_prefix); in IsLocationOnModule()
360 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() argument
361 return IsLocationOnModule(full_path, in LocationIsOnSystemFramework()
367 bool LocationIsOnRuntimeModule(const char* full_path) { in LocationIsOnRuntimeModule() argument
368 return IsLocationOnModule(full_path, kAndroidRuntimeRootEnvVar, kAndroidRuntimeApexDefaultPath); in LocationIsOnRuntimeModule()
371 bool LocationIsOnConscryptModule(const char* full_path) { in LocationIsOnConscryptModule() argument
373 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()
376 bool LocationIsOnApex(const char* full_path) { in LocationIsOnApex() argument
377 return android::base::StartsWith(full_path, kApexDefaultPath); in LocationIsOnApex()
[all …]
/art/compiler/debug/
Delf_debug_line_writer.h181 std::string full_path(file_name); in WriteCompilationUnit()
197 full_path = package_name + "/" + file_name; in WriteCompilationUnit()
201 auto it2 = files_map.find(full_path); in WriteCompilationUnit()
204 files_map.emplace(full_path, file_index); in WriteCompilationUnit()