Lines Matching refs:full_path
329 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()
386 UniqueCPtr<const char[]> full_path(realpath(path, nullptr)); in LocationIsOnSystem()
387 return full_path != nullptr && in LocationIsOnSystem()
388 android::base::StartsWith(full_path.get(), GetAndroidRoot().c_str()); in LocationIsOnSystem()