HomeSort by relevance Sort by last modified time
    Searched refs:old_method (Results 1 - 4 of 4) sorted by null

  /art/runtime/jit/
jit_code_cache.cc 151 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method) {
152 std::replace(methods_.begin(), methods_.end(), old_method, new_method);
    [all...]
jit_code_cache.h 257 // Notify the code cache that the method at the pointer 'old_method' is being moved to the pointer
259 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method)
  /art/openjdkjvmti/
ti_redefine.cc 177 art::ArtMethod* old_method = GetMethod(); local
178 if (obsoleted_methods_.find(old_method) != obsoleted_methods_.end()) {
182 art::ArtMethod* new_obsolete_method = obsolete_maps_->FindObsoleteVersion(old_method);
191 << old_method->PrettyMethod() << "'";
193 new_obsolete_method->CopyFrom(old_method, ptr_size);
194 DCHECK_EQ(new_obsolete_method->GetDeclaringClass(), old_method->GetDeclaringClass());
198 obsolete_maps_->RecordObsolete(old_method, new_obsolete_method);
204 jit->GetCodeCache()->MoveObsoleteMethod(old_method, new_obsolete_method);
643 art::ArtMethod* old_method = FindMethod(h_klass, new_method_name, new_method_signature); local
647 if (old_method == nullptr)
    [all...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py     [all...]

Completed in 111 milliseconds