• Home
  • Raw
  • Download

Lines Matching refs:full_path

571 bool LocationIsOnArtModule(std::string_view full_path) {  in LocationIsOnArtModule()  argument
577 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()
597 static bool IsLocationOn(std::string_view full_path, in IsLocationOn() argument
625 return android::base::StartsWith(full_path, path_prefix); in IsLocationOn()
628 bool LocationIsOnSystemFramework(std::string_view full_path) { in LocationIsOnSystemFramework() argument
629 return IsLocationOn(full_path, in LocationIsOnSystemFramework()
635 bool LocationIsOnSystemExtFramework(std::string_view full_path) { in LocationIsOnSystemExtFramework() argument
636 return IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
642 IsLocationOn(full_path, in LocationIsOnSystemExtFramework()
648 bool LocationIsOnConscryptModule(std::string_view full_path) { in LocationIsOnConscryptModule() argument
649 return IsLocationOn(full_path, kAndroidConscryptRootEnvVar, kAndroidConscryptApexDefaultPath); in LocationIsOnConscryptModule()
652 bool LocationIsOnI18nModule(std::string_view full_path) { in LocationIsOnI18nModule() argument
653 return IsLocationOn(full_path, kAndroidI18nRootEnvVar, kAndroidI18nApexDefaultPath); in LocationIsOnI18nModule()
656 bool LocationIsOnApex(std::string_view full_path) { in LocationIsOnApex() argument
657 return android::base::StartsWith(full_path, kApexDefaultPath); in LocationIsOnApex()
660 std::string_view ApexNameFromLocation(std::string_view full_path) { in ApexNameFromLocation() argument
661 if (!android::base::StartsWith(full_path, kApexDefaultPath)) { in ApexNameFromLocation()
665 size_t end = full_path.find('/', start); in ApexNameFromLocation()
669 return full_path.substr(start, end - start); in ApexNameFromLocation()