Searched refs:new_method (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
D | runtime_callbacks.cc | 311 /*out*/void** new_method) { in RegisterNativeMethod() argument 313 *new_method = cur_method; in RegisterNativeMethod() 315 cb->RegisterNativeMethod(method, cur_method, new_method); in RegisterNativeMethod() 316 if (*new_method != nullptr) { in RegisterNativeMethod() 317 cur_method = *new_method; in RegisterNativeMethod()
|
D | class_linker.cc | 7691 ArtMethod& new_method = *out; in ReallocMethods() local 7692 new_method.CopyFrom(mir_method, pointer_size); in ReallocMethods() 7693 new_method.SetAccessFlags(new_method.GetAccessFlags() | kAccMiranda | kAccCopied); in ReallocMethods() 7694 DCHECK_NE(new_method.GetAccessFlags() & kAccAbstract, 0u) in ReallocMethods() 7696 move_table_.emplace(mir_method, &new_method); in ReallocMethods() 7701 miranda_methods_[i] = &new_method; in ReallocMethods() 7714 ArtMethod& new_method = *out; in ReallocMethods() local 7715 new_method.CopyFrom(def_method, pointer_size); in ReallocMethods() 7720 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods() 7723 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in ReallocMethods() [all …]
|
D | class_linker.h | 1080 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) { in CreateTranslatedMethod() argument 1081 return MethodTranslation(Type::kTranslation, new_method); in CreateTranslatedMethod()
|
/art/openjdkjvmti/ |
D | events-inl.h | 494 void** new_method) const { 502 new_method); 503 *new_method = cur_method; 505 *new_method = cur_method; 511 new_method); 512 if (*new_method != nullptr) { 513 cur_method = *new_method; 516 *new_method = cur_method;
|
D | ti_method.cc | 72 /*out*/void** new_method) in RegisterNativeMethod() 87 new_method); in RegisterNativeMethod()
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 183 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method) { in MoveObsoleteMethod() argument 184 std::replace(methods_.begin(), methods_.end(), old_method, new_method); in MoveObsoleteMethod() 1279 void JitCodeCache::MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method) { in MoveObsoleteMethod() argument 1285 data.MoveObsoleteMethod(old_method, new_method); in MoveObsoleteMethod() 1297 new_method->SetProfilingInfo(info); in MoveObsoleteMethod() 1300 info->method_ = new_method; in MoveObsoleteMethod() 1305 it.second = new_method; in MoveObsoleteMethod() 1311 osr_code_map_.Put(new_method, code_map->second); in MoveObsoleteMethod()
|
D | jit_code_cache.h | 250 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method)
|
/art/compiler/optimizing/ |
D | inliner.cc | 1194 ArtMethod* new_method = nullptr; in TryInlinePolymorphicCallToSameTarget() local 1196 new_method = classes->Get(i)->GetImt(pointer_size)->Get( in TryInlinePolymorphicCallToSameTarget() 1198 if (new_method->IsRuntimeMethod()) { in TryInlinePolymorphicCallToSameTarget() 1205 new_method = classes->Get(i)->GetEmbeddedVTableEntry(method_index, pointer_size); in TryInlinePolymorphicCallToSameTarget() 1207 DCHECK(new_method != nullptr); in TryInlinePolymorphicCallToSameTarget() 1209 actual_method = new_method; in TryInlinePolymorphicCallToSameTarget() 1210 } else if (actual_method != new_method) { in TryInlinePolymorphicCallToSameTarget()
|
/art/runtime/mirror/ |
D | class.cc | 1274 ArtMethod* new_method, in IsMethodPreferredOver() argument 1276 DCHECK(new_method != nullptr); in IsMethodPreferredOver() 1291 DCHECK(!orig_method->IsDirect() || new_method->IsDirect()); in IsMethodPreferredOver() 1294 if (orig_method->IsSynthetic() && !new_method->IsSynthetic()) { in IsMethodPreferredOver()
|
/art/test/004-JniTest/ |
D | jni_test.cc | 708 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V"); in TestCalls() local 709 jobject obj = env_->NewObject(concrete_class_, new_method); in TestCalls()
|