Searched refs:full_path (Results 1 – 3 of 3) sorted by relevance
389 bool LocationIsOnArtModule(const char* full_path) { in LocationIsOnArtModule() argument395 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()415 static bool IsLocationOnModule(const char* full_path, in IsLocationOnModule() argument443 return android::base::StartsWith(full_path, path_prefix); in IsLocationOnModule()446 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() argument447 return IsLocationOnModule(full_path, in LocationIsOnSystemFramework()453 bool LocationIsOnConscryptModule(const char* full_path) { in LocationIsOnConscryptModule() argument455 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()458 bool LocationIsOnApex(const char* full_path) { in LocationIsOnApex() argument459 return android::base::StartsWith(full_path, kApexDefaultPath); in LocationIsOnApex()[all …]
179 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()
44 std::string GetFilenameBase(const std::string& full_path) { in GetFilenameBase() argument45 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()