Home
last modified time | relevance | path

Searched refs:cur_method (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Druntime_callbacks.cc259 void* cur_method = const_cast<void*>(in_cur_method); in RegisterNativeMethod() local
260 *new_method = cur_method; in RegisterNativeMethod()
262 cb->RegisterNativeMethod(method, cur_method, new_method); in RegisterNativeMethod()
264 cur_method = *new_method; in RegisterNativeMethod()
Djni_internal.cc108 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc*/ nullptr, in NotifySetObjectField() local
112 if (cur_method == nullptr) { in NotifySetObjectField()
117 DCHECK(cur_method->IsNative()); in NotifySetObjectField()
122 cur_method, in NotifySetObjectField()
135 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc*/ nullptr, in NotifySetPrimitiveField() local
139 if (cur_method == nullptr) { in NotifySetPrimitiveField()
144 DCHECK(cur_method->IsNative()); in NotifySetPrimitiveField()
147 cur_method, in NotifySetPrimitiveField()
159 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc*/ nullptr, in NotifyGetField() local
163 if (cur_method == nullptr) { in NotifyGetField()
[all …]
/art/openjdkjvmti/
Devents-inl.h428 void* cur_method,
436 cur_method,
438 *new_method = cur_method;
440 *new_method = cur_method;
445 cur_method,
448 cur_method = *new_method;
451 *new_method = cur_method;
Dti_method.cc67 const void* cur_method, in RegisterNativeMethod()
82 const_cast<void*>(cur_method), in RegisterNativeMethod()
/art/compiler/driver/
Dcompiler_options.h214 for (const std::string& cur_method : verbose_methods_) { in IsVerboseMethod() local
215 if (pretty_method.find(cur_method) != std::string::npos) { in IsVerboseMethod()