Home
last modified time | relevance | path

Searched refs:GetMethods (Results 1 – 25 of 52) sorted by relevance

123

/art/libprofile/profile/
Dprofile_boot_info_test.cc60 ASSERT_EQ(loaded_info.GetMethods().size(), 1u); in TEST_F()
61 ASSERT_EQ(loaded_info.GetMethods()[0].first, 0u); in TEST_F()
62 ASSERT_EQ(loaded_info.GetMethods()[0].second, 0u); in TEST_F()
86 ASSERT_EQ(loaded_info.GetMethods().size(), 3u); in TEST_F()
87 ASSERT_EQ(loaded_info.GetMethods()[0].first, 0u); in TEST_F()
88 ASSERT_EQ(loaded_info.GetMethods()[0].second, 42u); in TEST_F()
89 ASSERT_EQ(loaded_info.GetMethods()[1].first, 1u); in TEST_F()
90 ASSERT_EQ(loaded_info.GetMethods()[1].second, 108u); in TEST_F()
91 ASSERT_EQ(loaded_info.GetMethods()[2].first, 1u); in TEST_F()
92 ASSERT_EQ(loaded_info.GetMethods()[2].second, 54u); in TEST_F()
Dprofile_boot_info.h54 const std::vector<std::pair<uint32_t, uint32_t>>& GetMethods() const { in GetMethods() function
/art/libdexfile/dex/
Ddex_file_tracking_registrar.cc160 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in SetAllCodeItemRegistration()
173 for (const ClassAccessor::Method& method : class_accessor.GetMethods()) { in SetAllCodeItemStartRegistration()
191 for (const ClassAccessor::Method& method : class_accessor.GetMethods()) { in SetAllInsnsRegistration()
206 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in SetCodeItemRegistration()
Dclass_accessor-inl.h225 ClassAccessor::GetMethods() const { in GetMethods() function
236 IterationRange<DataIterator<Method>> methods = GetMethods(); in GetVirtualMethods()
Dclass_accessor_test.cc38 auto methods = accessor.GetMethods(); in TEST_F()
Dclass_accessor.h321 IterationRange<DataIterator<Method>> GetMethods() const;
Dart_dex_file_loader_test.cc171 auto methods = accessor.GetMethods(); in TEST_F()
/art/runtime/mirror/
Dclass-refvisitor-inl.h64 for (ArtMethod& method : GetMethods(pointer_size)) { in VisitNativeRoots()
92 for (ArtMethod& method : GetMethods(pointer_size)) { in VisitMethods()
/art/runtime/
Dnative_bridge_art_interface.cc50 for (auto& m : c->GetMethods(kRuntimePointerSize)) { in GetNativeMethodCount()
65 for (auto& m : c->GetMethods(kRuntimePointerSize)) { in GetNativeMethods()
Dart_method.cc160 &(*declaring_class->GetMethods(pointer_size).begin()), in GetObsoleteDexCache()
161 &(*declaring_class->GetMethods(pointer_size).end()))) in GetObsoleteDexCache()
466 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in GetOatMethodIndexFromMethodIndex()
Druntime_callbacks_test.cc81 for (auto& m : klass->GetMethods(pointer_size)) { in MakeExecutable()
/art/test/983-source-transform-verify/
Dsource_transform_art.cc54 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in VerifyClassData()
/art/dex2oat/dex/
Dverification_results.cc64 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in AddUncompilableClass()
/art/libdexfile/external/
Ddex_file_ext.cc63 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in FindMethod()
89 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in CreateClassCache()
249 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in ADexFile_forEachMethod()
/art/runtime/jit/
Djit_code_cache.cc129 for (ArtMethod* m : GetMethods()) { in UpdateEntryPoints()
162 const std::vector<ArtMethod*>& GetMethods() const { in GetMethods() function in art::jit::JitCodeCache::JniStubData
302 ContainsElement(it->second.GetMethods(), method)) { in ContainsMethod()
326 if (data.IsCompiled() && ContainsElement(data.GetMethods(), method)) { in GetJniStubCode()
544 if (it->second.GetMethods().empty()) { in RemoveMethodsIn()
548 it->first.UpdateShorty(it->second.GetMethods().front()); in RemoveMethodsIn()
747 DCHECK(ContainsElement(data->GetMethods(), method)) in Commit()
839 if (it->second.GetMethods().empty()) { in RemoveMethodLocked()
846 it->first.UpdateShorty(it->second.GetMethods().front()); in RemoveMethodLocked()
1124 if (!data.IsCompiled() || !ContainsElement(data.GetMethods(), method)) { in RemoveUnmarkedCode()
[all …]
/art/tools/veridex/
Dresolver.cc43 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in Run()
142 for (const ClassAccessor::Method& method : other_dex_accessor.GetMethods()) { in LookupMethodIn()
247 for (const ClassAccessor::Method& method : other_dex_accessor.GetMethods()) { in LookupDeclaredMethodIn()
Dprecise_hidden_api_finder.cc41 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in RunInternal()
Dhidden_api_finder.cc63 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in CollectAccesses()
/art/runtime/verifier/
Dclass_verifier.cc114 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in VerifyClass()
/art/dexlist/
Ddexlist.cc149 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in dumpClass()
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc94 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles()
312 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFile()
579 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFile()
Ddexanalyze_bytecode.cc117 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles()
134 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles()
/art/profman/
Dboot_image_profile.cc133 for (auto& it : accessor.GetMethods()) { in MaybeIsClassClean()
/art/dex2oat/driver/
Dcompiler_driver_test.cc111 for (auto& m : c->GetMethods(pointer_size)) { in MakeDexFileExecutable()
/art/tools/hiddenapi/
Dhiddenapi.cc276 for (const ClassAccessor::Method& method : klass.GetMethods()) { in ForEachDexMember()
422 for (const ClassAccessor::Method& method : dex_class.GetMethods()) { in ForEachMatchingMember()

123