Home
last modified time | relevance | path

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

/art/test/115-native-bridge/
Dexpected.txt5 Getting trampoline for JNI_OnLoad with shorty (null).
20 Getting trampoline for Java_Main_testFindClassOnAttachedNativeThread with shorty V.
22 Getting trampoline for Java_Main_testFindFieldOnAttachedNativeThreadNative with shorty V.
24 Getting trampoline for Java_Main_testCallStaticVoidMethodOnSubClassNative with shorty V.
26 Getting trampoline for Java_Main_testGetMirandaMethodNative with shorty L.
28 Getting trampoline for Java_Main_testZeroLengthByteBuffers with shorty V.
30 Getting trampoline for Java_Main_byteMethod with shorty BBBBBBBBBBB.
38 Getting trampoline for Java_Main_shortMethod with shorty SSSSSSSSSSS.
48 Getting trampoline for Java_Main_booleanMethod with shorty ZZZZZZZZZZZ.
51 Getting trampoline for Java_Main_charMethod with shorty CCCCCCCCCCC.
[all …]
Dnativebridge.cc38 void* trampoline; member
322 return method->trampoline; in native_bridge_getTrampoline()
/art/runtime/mirror/
Ddex_cache.cc70 void DexCache::Fixup(ArtMethod* trampoline, size_t pointer_size) { in Fixup() argument
72 CHECK(trampoline != nullptr); in Fixup()
73 CHECK(trampoline->IsRuntimeMethod()); in Fixup()
77 SetElementPtrSize(resolved_methods, i, trampoline, pointer_size); in Fixup()
Ddex_cache.h61 void Fixup(ArtMethod* trampoline, size_t pointer_size)
/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()
/art/oatdump/
Doatdump.cc158 for (const auto& trampoline : debug::MakeTrampolineInfos(oat_file_->GetOatHeader())) { in Symbolize() local
159 method_debug_infos_.push_back(trampoline); in Symbolize()