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.cc325 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/
Devents-inl.h516 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;
Dti_method.cc88 const void* cur_method, in RegisterNativeMethod()
104 const_cast<void*>(cur_method), in RegisterNativeMethod()
/art/compiler/driver/
Dcompiler_options.h261 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/
Djni_internal.cc112 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 …]