Home | History | Annotate | Download | only in interpreter

Lines Matching refs:fn

141       fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
147 jresult = fn(soa.Env(), klass.get());
152 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
156 fn(soa.Env(), klass.get());
159 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
163 result->SetZ(fn(soa.Env(), klass.get()));
166 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
170 result->SetB(fn(soa.Env(), klass.get(), args[0]));
173 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
177 result->SetI(fn(soa.Env(), klass.get(), args[0]));
180 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
188 jresult = fn(soa.Env(), klass.get(), arg0.get());
193 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
197 result->SetI(fn(soa.Env(), klass.get(), args[0], args[1]));
200 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(
207 result->SetI(fn(soa.Env(), klass.get(), arg0.get(), args[1]));
210 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(method->GetEntryPointFromJni()));
214 result->SetS(fn(soa.Env(), klass.get(), args[0], args[1]));
217 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
221 fn(soa.Env(), klass.get(), args[0], args[1]);
224 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
232 result->SetZ(fn(soa.Env(), klass.get(), arg0.get(), arg1.get()));
235 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
243 result->SetZ(fn(soa.Env(), klass.get(), args[0], arg1.get(), arg2.get()));
246 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
252 fn(soa.Env(), klass.get(), args[0], arg1.get(), args[2], args[3]);
255 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
263 fn(soa.Env(), klass.get(), arg0.get(), args[1], arg2.get(), args[3], args[4]);
271 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
277 jresult = fn(soa.Env(), rcvr.get());
282 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
286 fn(soa.Env(), rcvr.get());
289 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
297 jresult = fn(soa.Env(), rcvr.get(), arg0.get());
303 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
307 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));