Searched defs:new_methods (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dart_method-inl.h485 ArtMethod** new_methods = visitor(old_methods); local
486 if (old_methods != new_methods) {
487 SetDexCacheResolvedMethods(new_methods, pointer_size);
H A Dclass_linker.cc3582 LengthPrefixedArray<ArtMethod>* new_methods) {
3583 klass->SetMethodsPtrUnchecked(new_methods,
3581 UpdateClassMethods(mirror::Class* klass, LengthPrefixedArray<ArtMethod>* new_methods) argument
/art/runtime/jit/
H A Dprofile_saver.cc139 uint16_t new_methods = 0; local
141 bool profile_saved_to_disk = ProcessProfilingInfo(&new_methods);
146 // Set the jit activity notifications to new_methods so we can wake up earlier if needed.
147 jit_activity_notifications_ = new_methods;
270 bool ProfileSaver::ProcessProfilingInfo(uint16_t* new_methods) { argument
281 *new_methods = 0;
313 *new_methods = std::max(static_cast<uint16_t>(delta_number_of_methods), *new_methods);
670 uint16_t new_methods; local
671 saver->ProcessProfilingInfo(&new_methods);
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc1086 ArtMethod** new_methods = fixup_adapter.ForwardObject(methods); local
1087 if (methods != new_methods) {
1088 dex_cache->SetResolvedMethods(new_methods);
1091 ArtMethod* orig = mirror::DexCache::GetElementPtrSize(new_methods, j, pointer_size);
1094 mirror::DexCache::SetElementPtrSize(new_methods, j, copy, pointer_size);
/art/runtime/mirror/
H A Dclass-inl.h190 inline void Class::SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, argument
194 SetMethodsPtrUnchecked(new_methods, num_direct, num_virtual);
198 inline void Class::SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, argument
201 DCHECK_LE(num_direct + num_virtual, (new_methods == nullptr) ? 0 : new_methods->size());
202 SetMethodsPtrInternal(new_methods);
209 inline void Class::SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods) { argument
211 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(new_methods)));
1077 LengthPrefixedArray<ArtMethod>* new_methods = visitor(methods); local
1078 if (methods != new_methods) {
[all...]

Completed in 667 milliseconds