Searched refs:resolved_methods (Results 1 - 8 of 8) sorted by relevance

/art/runtime/mirror/
H A Ddex_cache.cc177 ArtMethod** resolved_methods,
190 CHECK_EQ(num_resolved_methods != 0u, resolved_methods != nullptr);
199 SetResolvedMethods(resolved_methods);
221 auto* resolved_methods = GetResolvedMethods(); local
223 if (GetElementPtrSize<ArtMethod*>(resolved_methods, i, pointer_size) == nullptr) {
224 SetElementPtrSize(resolved_methods, i, trampoline, pointer_size);
171 Init(const DexFile* dex_file, ObjPtr<String> location, StringDexCacheType* strings, uint32_t num_strings, TypeDexCacheType* resolved_types, uint32_t num_resolved_types, ArtMethod** resolved_methods, uint32_t num_resolved_methods, FieldDexCacheType* resolved_fields, uint32_t num_resolved_fields, MethodTypeDexCacheType* resolved_method_types, uint32_t num_resolved_method_types, GcRoot<CallSite>* resolved_call_sites, uint32_t num_resolved_call_sites, PointerSize pointer_size) argument
H A Ddex_cache.h335 void SetResolvedMethods(ArtMethod** resolved_methods)
338 SetFieldPtr<false>(ResolvedMethodsOffset(), resolved_methods); local
441 ArtMethod** resolved_methods,
/art/runtime/
H A Dclass_linker-inl.h196 proxy_method->HasSameDexCacheResolvedMethods(data.resolved_methods,
H A Dclass_linker.h655 resolved_methods(nullptr),
670 ArtMethod** resolved_methods; member in struct:art::ClassLinker::DexCacheData
H A Dclass_linker_test.cc445 auto* resolved_methods = dex_cache->GetResolvedMethods(); local
448 mirror::DexCache::GetElementPtrSize(resolved_methods, i, kRuntimePointerSize) != nullptr)
H A Dclass_linker.cc1112 ArtMethod** resolved_methods = method->GetDexCacheResolvedMethods(kRuntimePointerSize); local
1113 if (resolved_methods != nullptr) {
1117 reinterpret_cast<const uint8_t*>(resolved_methods) - header_.GetImageBegin());
1121 << resolved_methods << " is not in image starting at "
3413 data.resolved_methods = dex_cache->GetResolvedMethods();
6895 auto* resolved_methods = klass_->GetDexCache()->GetResolvedMethods(); local
6897 auto* m = mirror::DexCache::GetElementPtrSize(resolved_methods, i, pointer_size);
/art/compiler/
H A Dimage_writer.cc942 ArtMethod** resolved_methods = dex_cache->GetResolvedMethods(); local
945 mirror::DexCache::GetElementPtrSize(resolved_methods, i, target_ptr_size_);
952 mirror::DexCache::SetElementPtrSize(resolved_methods,
/art/oatdump/
H A Doatdump.cc2182 auto* resolved_methods = dex_cache->GetResolvedMethods(); local
2184 auto* elem = mirror::DexCache::GetElementPtrSize(resolved_methods,
2189 j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_methods,

Completed in 133 milliseconds