Home | History | Annotate | Download | only in jni

Lines Matching defs:method_sig

239                       const char* method_sig) {
247 ArtMethod* method = direct ? c->FindDirectMethod(method_name, method_sig, pointer_size) :
248 c->FindVirtualMethod(method_name, method_sig, pointer_size);
249 ASSERT_TRUE(method != nullptr) << method_name << " " << method_sig;
257 << method_name << " " << method_sig;
266 const char* method_sig) {
272 CompileForTest(class_loader, direct, method_name, method_sig);
277 const char* method_sig,
290 CompileForTest(class_loader_, direct, method_name, method_sig);
301 ASSERT_TRUE(jklass_ != nullptr) << method_name << " " << method_sig;
304 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig);
306 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
308 ASSERT_TRUE(jmethod_ != nullptr) << method_name << " " << method_sig;
311 JNINativeMethod methods[] = { { method_name, method_sig, native_fnptr } };
313 << method_name << " " << method_sig;
320 ASSERT_TRUE(jobj_ != nullptr) << method_name << " " << method_sig;