Searched refs:fn (Results 1 - 11 of 11) sorted by path

/art/compiler/utils/arm/
H A Dassembler_thumb2.cc31 void Thumb2Assembler::Fixup::ForExpandableDependencies(Thumb2Assembler* assembler, Function fn) { argument
34 "Incorrect signature for argument `fn`: expected (FixupId, FixupId) -> void");
41 fn(id, fixup_id);
47 fn(id - 1u, fixup_id);
H A Dassembler_thumb2.h642 static void ForExpandableDependencies(Thumb2Assembler* assembler, Function fn);
/art/runtime/interpreter/
H A Dinterpreter.cc44 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
50 jresult = fn(soa.Env(), klass.get());
55 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
59 fn(soa.Env(), klass.get());
62 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
66 result->SetZ(fn(soa.Env(), klass.get()));
69 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
73 result->SetB(fn(soa.Env(), klass.get(), args[0]));
76 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
80 result->SetI(fn(so
83 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
97 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
104 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>( local
115 fntype* const fn = local
123 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
130 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
143 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
156 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
166 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
184 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
195 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
202 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
217 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
[all...]
/art/runtime/
H A Djava_vm_ext.cc256 void* fn = library->FindSymbol(jni_short_name, shorty); local
257 if (fn == nullptr) {
258 fn = library->FindSymbol(jni_long_name, shorty);
260 if (fn != nullptr) {
263 return fn;
H A Djni_internal.cc1250 #define GET_PRIMITIVE_FIELD(fn, instance) \
1256 return f->Get ##fn (o)
1258 #define GET_STATIC_PRIMITIVE_FIELD(fn) \
1262 return f->Get ##fn (f->GetDeclaringClass())
1264 #define SET_PRIMITIVE_FIELD(fn, instance, value) \
1270 f->Set ##fn <false>(o, value)
1272 #define SET_STATIC_PRIMITIVE_FIELD(fn, value) \
1276 f->Set ##fn <false>(f->GetDeclaringClass(), value)
H A Dnative_bridge_art_interface.cc116 android::NativeBridgeSignalHandlerFn fn = android::NativeBridgeGetSignalHandler(signal); local
117 if (fn != nullptr) {
118 SetSpecialSignalHandlerFn(signal, fn);
H A Doat_file_manager.cc230 std::function<bool(const DexFile*)> fn)
244 if (!fn(cp_dex_file)) {
255 std::function<bool(const DexFile*)> fn) SHARED_REQUIRES(Locks::mutator_lock_) {
282 IterateOverJavaDexFile(dex_file, cookie_field, fn);
/art/sigchainlib/
H A Dsigchain.cc80 void SetSpecialHandler(SpecialSignalHandlerFn fn) { argument
81 special_handler_ = fn;
339 extern "C" void SetSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn) { argument
343 user_sigactions[signal].SetSpecialHandler(fn);
H A Dsigchain.h31 extern "C" void SetSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn);
H A Dsigchain_dummy.cc82 SpecialSignalHandlerFn fn ATTRIBUTE_UNUSED) {
/art/test/004-JniTest/
H A Djni_test.cc54 Fn fn = reinterpret_cast<Fn>(arg); local
55 fn(env);
62 static void PthreadHelper(void (*fn)(JNIEnv*)) { argument
65 reinterpret_cast<void*>(fn));

Completed in 170 milliseconds