Searched refs:cur_method (Results 1 – 6 of 6) sorted by relevance
/art/libdexfile/dex/ |
D | art_dex_file_loader_test.cc | 123 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/ |
D | runtime_callbacks.cc | 312 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/ |
D | events-inl.h | 493 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;
|
D | ti_method.cc | 71 const void* cur_method, in RegisterNativeMethod() 86 const_cast<void*>(cur_method), in RegisterNativeMethod()
|
/art/compiler/driver/ |
D | compiler_options.h | 251 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/ |
D | jni_internal.cc | 294 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 …]
|