Lines Matching refs:full_path

525 bool LocationIsOnArtModule(std::string_view full_path) {  in LocationIsOnArtModule()  argument
531 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()
551 static bool IsLocationOn(std::string_view full_path, in IsLocationOn() argument
579 return android::base::StartsWith(full_path, path_prefix); in IsLocationOn()
582 bool LocationIsOnSystemFramework(std::string_view full_path) { in LocationIsOnSystemFramework() argument
583 return IsLocationOn(full_path, in LocationIsOnSystemFramework()
589 bool LocationIsOnSystemExtFramework(std::string_view full_path) { in LocationIsOnSystemExtFramework() argument
590 return IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
596 IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
602 bool LocationIsOnConscryptModule(std::string_view full_path) { in LocationIsOnConscryptModule() argument
604 full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()
607 bool LocationIsOnI18nModule(std::string_view full_path) { in LocationIsOnI18nModule() argument
609 full_path, kAndroidI18nRootEnvVar, kAndroidI18nApexDefaultPath); in LocationIsOnI18nModule()
612 bool LocationIsOnApex(std::string_view full_path) { in LocationIsOnApex() argument
613 return android::base::StartsWith(full_path, kApexDefaultPath); in LocationIsOnApex()
622 UniqueCPtr<const char[]> full_path(realpath(location.c_str(), nullptr)); in LocationIsOnSystem()
623 return full_path != nullptr && in LocationIsOnSystem()
624 android::base::StartsWith(full_path.get(), GetAndroidRoot().c_str()); in LocationIsOnSystem()