jni_compiler_test.cc | 49 const char* method_name, const char* method_sig) { 56 method = c->FindDirectMethod(method_name, method_sig); 58 method = c->FindVirtualMethod(method_name, method_sig); 60 ASSERT_TRUE(method != NULL) << method_name << " " << method_sig; local 65 ASSERT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << method_name << " " << method_sig; local 68 void SetUpForTest(bool direct, const char* method_name, const char* method_sig, 76 CompileForTest(class_loader_, direct, method_name, method_sig); 85 ASSERT_TRUE(jklass_ != NULL) << method_name << " " << method_sig; local 88 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig); 90 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig); 92 ASSERT_TRUE(jmethod_ != NULL) << method_name << " " << method_sig; local 97 << method_name << " " << method_sig; local 104 ASSERT_TRUE(jobj_ != NULL) << method_name << " " << method_sig; local [all...] |