Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Dart_dex_file_loader_test.cc123 auto cur_method = methods.begin(); in TEST_F() local
128 const dex::MethodId& method_id = raw->GetMethodId(cur_method->GetIndex()); in TEST_F()
200 ++cur_method; in TEST_F()
201 ASSERT_TRUE(cur_method != methods.end()); in TEST_F()
202 const dex::MethodId& method_id = raw->GetMethodId(cur_method->GetIndex()); in TEST_F()
212 raw->PrettyMethod(cur_method->GetIndex(), /* with_signature= */ false)); in TEST_F()
214 raw->PrettyMethod(cur_method->GetIndex(), /* with_signature= */ true)); in TEST_F()
/art/runtime/
Druntime_callbacks.cc312 void* cur_method = const_cast<void*>(in_cur_method); in RegisterNativeMethod() local
313 *new_method = cur_method; in RegisterNativeMethod()
315 cb->RegisterNativeMethod(method, cur_method, new_method); in RegisterNativeMethod()
317 cur_method = *new_method; in RegisterNativeMethod()
/art/openjdkjvmti/
Devents-inl.h493 void* cur_method,
501 cur_method,
503 *new_method = cur_method;
505 *new_method = cur_method;
510 cur_method,
513 cur_method = *new_method;
516 *new_method = cur_method;
Dti_method.cc71 const void* cur_method, in RegisterNativeMethod()
86 const_cast<void*>(cur_method), in RegisterNativeMethod()
/art/compiler/driver/
Dcompiler_options.h251 for (const std::string& cur_method : verbose_methods_) { in IsVerboseMethod() local
252 if (pretty_method.find(cur_method) != std::string::npos) { in IsVerboseMethod()
/art/runtime/jni/
Djni_internal.cc294 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifySetObjectField() local
298 if (cur_method == nullptr) { in NotifySetObjectField()
303 DCHECK(cur_method->IsNative()); in NotifySetObjectField()
308 cur_method, in NotifySetObjectField()
321 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifySetPrimitiveField() local
325 if (cur_method == nullptr) { in NotifySetPrimitiveField()
330 DCHECK(cur_method->IsNative()); in NotifySetPrimitiveField()
333 cur_method, in NotifySetPrimitiveField()
345 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifyGetField() local
349 if (cur_method == nullptr) { in NotifyGetField()
[all …]