Home | History | Annotate | Download | only in interpreter

Lines Matching refs:fn

61       fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
67 jresult = fn(soa.Env(), klass.get());
72 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
76 fn(soa.Env(), klass.get());
79 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
83 result->SetZ(fn(soa.Env(), klass.get()));
86 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
90 result->SetB(fn(soa.Env(), klass.get(), args[0]));
93 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
97 result->SetI(fn(soa.Env(), klass.get(), args[0]));
100 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
108 jresult = fn(soa.Env(), klass.get(), arg0.get());
113 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
117 result->SetI(fn(soa.Env(), klass.get(), args[0], args[1]));
120 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(
127 result->SetI(fn(soa.Env(), klass.get(), arg0.get(), args[1]));
130 fntype* const fn =
135 result->SetS(fn(soa.Env(), klass.get(), args[0], args[1]));
138 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
142 fn(soa.Env(), klass.get(), args[0], args[1]);
145 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
153 result->SetZ(fn(soa.Env(), klass.get(), arg0.get(), arg1.get()));
156 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
164 result->SetZ(fn(soa.Env(), klass.get(), args[0], arg1.get(), arg2.get()));
167 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
173 fn(soa.Env(), klass.get(), args[0], arg1.get(), args[2], args[3]);
176 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
184 fn(soa.Env(), klass.get(), arg0.get(), args[1], arg2.get(), args[3], args[4]);
192 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
198 jresult = fn(soa.Env(), rcvr.get());
203 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
207 fn(soa.Env(), rcvr.get());
210 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
218 jresult = fn(soa.Env(), rcvr.get(), arg0.get());
224 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
228 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));