Home
last modified time | relevance | path

Searched refs:LocationIsOnSystemFramework (Results 1 – 4 of 4) sorted by relevance

/art/runtime/base/
Dfile_utils.h79 bool LocationIsOnSystemFramework(const char* location);
Dfile_utils.cc323 bool LocationIsOnSystemFramework(const char* full_path) { in LocationIsOnSystemFramework() function
/art/runtime/dex/
Dart_dex_file_loader_test.cc318 ASSERT_FALSE(LocationIsOnSystemFramework(data_location_path.c_str())); in TEST_F()
346 ASSERT_FALSE(LocationIsOnSystemFramework(system_location_path.c_str())); in TEST_F()
374 ASSERT_TRUE(LocationIsOnSystemFramework(system_framework_location_path.c_str())); in TEST_F()
402 ASSERT_FALSE(LocationIsOnSystemFramework(data_multi_location_path.c_str())); in TEST_F()
431 ASSERT_FALSE(LocationIsOnSystemFramework(system_multi_location_path.c_str())); in TEST_F()
460 ASSERT_TRUE(LocationIsOnSystemFramework(system_framework_multi_location_path.c_str())); in TEST_F()
Dart_dex_file_loader.cc540 if (dex_file != nullptr && LocationIsOnSystemFramework(path.c_str())) { in OpenCommon()