/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 44 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest 55 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest 60 return info->AddMethod( in AddMethod() 151 ASSERT_TRUE(AddMethod("dex_location1", /* checksum= */ 1, /* method_idx= */ i, &saved_info)); in TestProfileLoadFromZip() 152 ASSERT_TRUE(AddMethod("dex_location2", /* checksum= */ 2, /* method_idx= */ i, &saved_info)); in TestProfileLoadFromZip() 210 ASSERT_TRUE(AddMethod("dex_location1", /* checksum= */ 1, /* method_idx= */ i, &saved_info)); in TEST_F() 211 ASSERT_TRUE(AddMethod("dex_location2", /* checksum= */ 2, /* method_idx= */ i, &saved_info)); in TEST_F() 224 ASSERT_TRUE(AddMethod("dex_location1", /* checksum= */ 1, /* method_idx= */ i, &saved_info)); in TEST_F() 225 ASSERT_TRUE(AddMethod("dex_location2", /* checksum= */ 2, /* method_idx= */ i, &saved_info)); in TEST_F() 226 ASSERT_TRUE(AddMethod("dex_location3", /* checksum= */ 3, /* method_idx= */ i, &saved_info)); in TEST_F() [all …]
|
D | profile_compilation_info.h | 286 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags); 301 if (!data->AddMethod(flags, *it)) { in AddMethodsForDex() 539 bool AddMethod(MethodHotness::Flag flags, size_t index); 614 bool AddMethod(const std::string& dex_location,
|
D | profile_compilation_info.cc | 172 return data->AddMethod(flags, ref.index); in AddMethodIndex() 186 return data->AddMethod(flags, method_idx); in AddMethodIndex() 192 if (!AddMethod(method, flags)) { in AddMethods() 705 bool ProfileCompilationInfo::AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfo 767 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod() function in art::ProfileCompilationInfo 1730 return dex_data->AddMethod( in AddMethodHotness() 2114 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod() function in art::ProfileCompilationInfo::DexFileData
|
/art/libdexfile/dex/ |
D | test_dex_file_builder_test.cc | 29 builder.AddMethod("LTestClass;", "()I", "foo"); in TEST() 30 builder.AddMethod("LTestClass;", "(Ljava/lang/Object;[Ljava/lang/Object;)LTestClass;", "bar"); in TEST()
|
D | test_dex_file_builder.h | 63 void AddMethod(const std::string& class_descriptor, const std::string& signature, in AddMethod() function
|
/art/runtime/jit/ |
D | profiling_info_test.cc | 66 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest 77 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest 82 return info->AddMethod( in AddMethod()
|
D | jit_code_cache.cc | 155 void AddMethod(ArtMethod* method) { in AddMethod() function in art::jit::JitCodeCache::JniStubData 2077 data->AddMethod(method); in NotifyCompilationOf()
|
/art/dex2oat/linker/ |
D | oat_writer_test.cc | 558 builder1.AddMethod("Lsome.TestClass;", "()I", "foo"); in TestDexFileInput() 573 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar"); in TestDexFileInput() 680 builder1.AddMethod("Lsome.TestClass;", "()D", "foo"); in TestZipFileInput() 698 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar"); in TestZipFileInput()
|
/art/profman/ |
D | profile_assistant_test.cc | 93 ASSERT_TRUE(info->AddMethod( in SetupProfile() 95 ASSERT_TRUE(info->AddMethod( in SetupProfile() 98 ASSERT_TRUE(info->AddMethod( in SetupProfile() 100 ASSERT_TRUE(info->AddMethod( in SetupProfile()
|
D | profman.cc | 1055 profile->AddMethod(ProfileMethodInfo(ref, inline_caches), in ProcessLine()
|