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

/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...]
H A Dprofile_saver.h79 bool ProcessProfilingInfo(uint16_t* new_methods)
/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)));
1082 LengthPrefixedArray<ArtMethod>* new_methods = visitor(methods); local
1083 if (methods != new_methods) {
[all...]
H A Dclass.h719 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods,
724 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods,
1279 ALWAYS_INLINE void SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods)
/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.h1075 LengthPrefixedArray<ArtMethod>* new_methods)
H A Dclass_linker.cc3614 LengthPrefixedArray<ArtMethod>* new_methods) {
3615 klass->SetMethodsPtrUnchecked(new_methods,
7193 // Make sure the new_methods index is set.
3613 UpdateClassMethods(mirror::Class* klass, LengthPrefixedArray<ArtMethod>* new_methods) argument
/art/runtime/gc/space/
H A Dimage_space.cc1074 ArtMethod** new_methods = fixup_adapter.ForwardObject(methods); local
1075 if (methods != new_methods) {
1076 dex_cache->SetResolvedMethods(new_methods);
1079 ArtMethod* orig = mirror::DexCache::GetElementPtrSize(new_methods, j, pointer_size);
1082 mirror::DexCache::SetElementPtrSize(new_methods, j, copy, pointer_size);

Completed in 179 milliseconds