Searched refs:fn (Results 1 - 9 of 9) sorted by relevance

/art/compiler/dex/quick/
H A Dresource_mask.cc59 #define DEFINE_LIST_32(fn) \
60 fn(0), fn(1), fn(2), fn(3), fn(4), fn(5), fn(6), fn(7), \
61 fn(
[all...]
/art/sigchainlib/
H A Dsigchain.h31 extern "C" void SetSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn);
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);
H A Dsigchain_dummy.cc82 SpecialSignalHandlerFn fn ATTRIBUTE_UNUSED) {
/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/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;
H A Djni_internal.cc1255 #define GET_PRIMITIVE_FIELD(fn, instance) \
1261 return f->Get ##fn (o)
1263 #define GET_STATIC_PRIMITIVE_FIELD(fn) \
1267 return f->Get ##fn (f->GetDeclaringClass())
1269 #define SET_PRIMITIVE_FIELD(fn, instance, value) \
1275 f->Set ##fn <false>(o, value)
1277 #define SET_STATIC_PRIMITIVE_FIELD(fn, value) \
1281 f->Set ##fn <false>(f->GetDeclaringClass(), value)
/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 214 milliseconds