Searched defs:fn (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dnative_bridge_art_interface.cc131 android::NativeBridgeSignalHandlerFn fn = android::NativeBridgeGetSignalHandler(signal); local
132 if (fn != nullptr) {
133 SetSpecialSignalHandlerFn(signal, fn);
H A Djava_vm_ext.cc226 void* fn; local
229 fn = library->FindSymbolWithNativeBridge(jni_short_name, shorty);
230 if (fn == nullptr) {
231 fn = library->FindSymbolWithNativeBridge(jni_long_name, shorty);
234 fn = library->FindSymbol(jni_short_name);
235 if (fn == nullptr) {
236 fn = library->FindSymbol(jni_long_name);
239 if (fn != nullptr) {
242 return fn;
/art/runtime/interpreter/
H A Dinterpreter.cc38 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
44 jresult = fn(soa.Env(), klass.get());
49 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
53 fn(soa.Env(), klass.get());
56 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
60 result->SetZ(fn(soa.Env(), klass.get()));
63 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
67 result->SetB(fn(soa.Env(), klass.get(), args[0]));
70 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
74 result->SetI(fn(so
77 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
91 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
98 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>( local
109 fntype* const fn = local
117 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
124 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
137 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
150 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
160 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
178 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
189 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
196 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
211 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
[all...]
/art/sigchainlib/
H A Dsigchain.cc80 void SetSpecialHandler(SpecialSignalHandlerFn fn) { argument
81 special_handler_ = fn;
331 extern "C" void SetSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn) { argument
335 user_sigactions[signal].SetSpecialHandler(fn);
/art/test/004-JniTest/
H A Djni_test.cc46 Fn fn = reinterpret_cast<Fn>(arg); local
47 fn(env);
54 static void PthreadHelper(void (*fn)(JNIEnv*)) { argument
57 reinterpret_cast<void*>(fn));

Completed in 535 milliseconds