Home
last modified time | relevance | path

Searched refs:trampoline (Results 1 – 8 of 8) sorted by relevance

/art/test/115-native-bridge/
Dexpected.txt5 Getting trampoline for JNI_OnLoad with shorty (null).
21 Getting trampoline for Java_Main_testFindClassOnAttachedNativeThread with shorty V.
23 Getting trampoline for Java_Main_testFindFieldOnAttachedNativeThreadNative with shorty V.
25 Getting trampoline for Java_Main_testCallStaticVoidMethodOnSubClassNative with shorty V.
27 Getting trampoline for Java_Main_testGetMirandaMethodNative with shorty L.
29 Getting trampoline for Java_Main_testZeroLengthByteBuffers with shorty V.
31 Getting trampoline for Java_Main_byteMethod with shorty BBBBBBBBBBB.
39 Getting trampoline for Java_Main_shortMethod with shorty SSSSSSSSSSS.
49 Getting trampoline for Java_Main_booleanMethod with shorty ZZZZZZZZZZZ.
52 Getting trampoline for Java_Main_charMethod with shorty CCCCCCCCCCC.
[all …]
Dnativebridge.cc39 void* trampoline; member
462 return method->trampoline; in native_bridge_getTrampoline()
/art/runtime/entrypoints/quick/
Dquick_entrypoints_enum.h40 static ThreadOffset<pointer_size> GetThreadOffset(QuickEntrypointEnum trampoline) { in GetThreadOffset() argument
41 switch (trampoline) in GetThreadOffset()
50 LOG(FATAL) << "Unexpected trampoline " << static_cast<int>(trampoline); in GetThreadOffset()
65 bool EntrypointRequiresStackMap(QuickEntrypointEnum trampoline);
Dquick_entrypoints_enum.cc21 bool EntrypointRequiresStackMap(QuickEntrypointEnum trampoline) { in EntrypointRequiresStackMap() argument
24 switch (trampoline) { in EntrypointRequiresStackMap()
/art/test/656-annotation-lookup-generic-jni/
Dinfo.txt3 Generic JNI trampoline because it would throw and exception when
/art/runtime/mirror/
Ddex_cache.cc217 void DexCache::Fixup(ArtMethod* trampoline, PointerSize pointer_size) { in Fixup() argument
219 CHECK(trampoline != nullptr); in Fixup()
220 CHECK(trampoline->IsRuntimeMethod()); in Fixup()
224 SetElementPtrSize(resolved_methods, i, trampoline, pointer_size); in Fixup()
Ddex_cache.h192 void Fixup(ArtMethod* trampoline, PointerSize pointer_size)
/art/oatdump/
Doatdump.cc174 for (const auto& trampoline : debug::MakeTrampolineInfos(oat_file_->GetOatHeader())) { in Symbolize() local
175 method_debug_infos_.push_back(trampoline); in Symbolize()