Lines Matching refs:thisObj

522 static void expectValidJniEnvAndObject(JNIEnv* env, jobject thisObj) {  in expectValidJniEnvAndObject()  argument
525 ASSERT_TRUE(thisObj != nullptr); in expectValidJniEnvAndObject()
526 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_)); in expectValidJniEnvAndObject()
537 #define EXPECT_JNI_ENV_AND_OBJECT_FOR_CURRENT_JNI(env, thisObj) \ argument
538 expectValidJniEnvAndObject(env, thisObj)
661 static R apply(JNIEnv* env, jobject thisObj, Args ... args) { in apply()
664 EXPECT_JNI_ENV_AND_OBJECT_FOR_CURRENT_JNI(env, thisObj); in apply()
666 EXPECT_NUM_STACK_REFERENCES(count_nonnull_refs(thisObj, args...)); in apply()
668 return fn(env, thisObj, args...); in apply()
931 jobject Java_MyClassNatives_fooIOO(JNIEnv*, jobject thisObj, jint x, jobject y, in Java_MyClassNatives_fooIOO() argument
940 return thisObj; in Java_MyClassNatives_fooIOO()
1371 jint Java_MyClassNatives_nativeUpCall(JNIEnv* env, jobject thisObj, jint i) { in JNI_TEST()
1404 jint result = env->CallNonvirtualIntMethod(thisObj, jklass, jmethod, i - 1); in JNI_TEST()
1439 jint local_ref_test(JNIEnv* env, jobject thisObj, jint x) { in JNI_TEST()
1443 soa.AddLocalReference<jobject>(soa.Decode<mirror::Object>(thisObj)); in JNI_TEST()
1515 jarray Java_MyClassNatives_GetSinkProperties(JNIEnv* env, jobject thisObj, jstring s) { in Java_MyClassNatives_GetSinkProperties() argument
1522 EXPECT_TRUE(self->HoldsLock(soa.Decode<mirror::Object>(thisObj))); in Java_MyClassNatives_GetSinkProperties()
1677 [[maybe_unused]] jobject thisObj, in JNI_TEST()