Searched refs:full_path (Results 1 – 3 of 3) sorted by relevance
390 bool LocationIsOnArtModule(const char* full_path) { in LocationIsOnArtModule() argument396 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()416 static bool IsLocationOnModule(const char* full_path, in IsLocationOnModule() argument444 return android::base::StartsWith(full_path, path_prefix); in IsLocationOnModule()447 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() argument448 return IsLocationOnModule(full_path, in LocationIsOnSystemFramework()454 bool LocationIsOnSystemExtFramework(const char* full_path) { in LocationIsOnSystemExtFramework() argument455 return IsLocationOnModule(full_path, in LocationIsOnSystemExtFramework()461 bool LocationIsOnConscryptModule(const char* full_path) { in LocationIsOnConscryptModule() argument463 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()[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()