Home
last modified time | relevance | path

Searched refs:resolved_methods (Results 1 – 2 of 2) sorted by relevance

/art/runtime/mirror/
Ddex_cache.cc38 ObjectArray<ArtMethod>* resolved_methods, in Init() argument
44 CHECK(resolved_methods != nullptr); in Init()
51 SetFieldObject<false>(ResolvedMethodsOffset(), resolved_methods); in Init()
58 size_t length = resolved_methods->GetLength(); in Init()
60 resolved_methods->SetWithoutChecks<false>(i, trampoline); in Init()
68 ObjectArray<ArtMethod>* resolved_methods = GetResolvedMethods(); in Fixup() local
69 size_t length = resolved_methods->GetLength(); in Fixup()
71 if (resolved_methods->GetWithoutChecks(i) == nullptr) { in Fixup()
72 resolved_methods->SetWithoutChecks<false>(i, trampoline); in Fixup()
/art/runtime/
Dclass_linker_test.cc361 mirror::ObjectArray<mirror::ArtMethod>* resolved_methods = dex_cache->GetResolvedMethods(); in AssertDexFile() local
362 for (size_t i = 0; i < static_cast<size_t>(resolved_methods->GetLength()); i++) { in AssertDexFile()
363 EXPECT_TRUE(resolved_methods->Get(i) != NULL) << dex->GetLocation() << " i=" << i; in AssertDexFile()