Home
last modified time | relevance | path

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

/aosp12/art/runtime/entrypoints/quick/
H A Dquick_jni_entrypoints.cc70 ArtMethod* native_method = *self->GetManagedStack()->GetTopQuickFrame(); in JniMethodFastStart() local
71 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodFastStart()
85 ArtMethod* native_method = *self->GetManagedStack()->GetTopQuickFrame(); in JniMethodStart() local
86 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodStart()
102 ArtMethod* native_method = *self->GetManagedStack()->GetTopQuickFrame(); in GoToRunnable() local
103 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnable()
112 ArtMethod* native_method = *self->GetManagedStack()->GetTopQuickFrame(); in GoToRunnableFast() local
113 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnableFast()
/aosp12/art/test/ti-agent/
H A Djni_binder.cc113 JNINativeMethod native_method; in BindMethod() local
114 native_method.fnPtr = sym; in BindMethod()
115 native_method.name = name.c_str(); in BindMethod()
116 native_method.signature = signature.c_str(); in BindMethod()
118 env->RegisterNatives(klass, &native_method, 1); in BindMethod()
/aosp12/frameworks/layoutlib/create/tests/src/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitorTest.java86 native_method(); in callTheNativeMethod()
89 private native void native_method(); in native_method() method in ClassHasNativeVisitorTest.ClassWithNative
/aosp12/art/runtime/jni/
H A Djava_vm_ext.cc1140 void* native_method = libraries_->FindNativeMethod(self, m, detail); in FindCodeForNativeMethod() local
1141 if (native_method == nullptr) { in FindCodeForNativeMethod()
1144 native_method = FindCodeForNativeMethodInAgents(m); in FindCodeForNativeMethod()
1147 if (native_method == nullptr) { in FindCodeForNativeMethod()
1151 return native_method; in FindCodeForNativeMethod()
/aosp12/art/runtime/
H A Dclass_linker.h797 const void* RegisterNative(Thread* self, ArtMethod* method, const void* native_method)
H A Dclass_linker.cc465 Thread* self, ArtMethod* method, const void* native_method) { in RegisterNative() argument
467 CHECK(native_method != nullptr) << method->PrettyMethod(); in RegisterNative()
471 native_method, in RegisterNative()