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 | 325 void* cur_method = const_cast<void*>(in_cur_method); in RegisterNativeMethod() local 326 *new_method = cur_method; in RegisterNativeMethod() 328 cb->RegisterNativeMethod(method, cur_method, new_method); in RegisterNativeMethod() 330 cur_method = *new_method; in RegisterNativeMethod()
|
/art/openjdkjvmti/ |
D | events-inl.h | 516 void* cur_method, 524 cur_method, 526 *new_method = cur_method; 528 *new_method = cur_method; 533 cur_method, 536 cur_method = *new_method; 539 *new_method = cur_method;
|
D | ti_method.cc | 88 const void* cur_method, in RegisterNativeMethod() 104 const_cast<void*>(cur_method), in RegisterNativeMethod()
|
/art/compiler/driver/ |
D | compiler_options.h | 261 for (const std::string& cur_method : verbose_methods_) { in IsVerboseMethod() local 262 if (pretty_method.find(cur_method) != std::string::npos) { in IsVerboseMethod()
|
/art/runtime/jni/ |
D | jni_internal.cc | 112 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifySetObjectField() local 116 if (cur_method == nullptr) { in NotifySetObjectField() 121 DCHECK(cur_method->IsNative()); in NotifySetObjectField() 126 cur_method, in NotifySetObjectField() 139 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifySetPrimitiveField() local 143 if (cur_method == nullptr) { in NotifySetPrimitiveField() 148 DCHECK(cur_method->IsNative()); in NotifySetPrimitiveField() 151 cur_method, in NotifySetPrimitiveField() 163 ArtMethod* cur_method = self->GetCurrentMethod(/*dex_pc=*/ nullptr, in NotifyGetField() local 167 if (cur_method == nullptr) { in NotifyGetField() [all …]
|