Searched refs:obj1 (Results 1 - 7 of 7) sorted by relevance

/art/test/088-monitor-verification/src/
H A DMain.java50 Object obj1 = new Object();
53 m.twoPath(obj1, obj2, 0);
56 m.triplet(obj1, obj2, 0);
182 public void twoPath(Object obj1, Object obj2, int x) { argument
185 synchronized (obj1) {
190 localObj = obj1;
202 public void triplet(Object obj1, Object obj2, int x) { argument
205 synchronized (obj1) {
206 synchronized(obj1) {
208 synchronized(obj1) {
[all...]
/art/runtime/
H A Djobject_comparator.cc34 mirror::Object* obj1 = soa.Decode<mirror::Object*>(jobj1); local
36 if (obj1 == NULL) {
42 if (obj1->GetClass() != obj2->GetClass()) {
43 return obj1->GetClass()->IdentityHashCode() < obj2->IdentityHashCode();
46 size_t count1 = obj1->SizeOf();
52 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Dreference_table.cc76 mirror::Object* obj1 = root1.Read<kWithoutReadBarrier>(); variable
79 if (obj1 == NULL) {
84 if (obj1 == kClearedJniWeakGlobal) {
91 if (obj1->GetClass() != obj2->GetClass()) {
92 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode();
95 size_t count1 = obj1->SizeOf();
101 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Dindirect_reference_table_test.cc55 mirror::Object* obj1 = c->AllocObject(soa.Self()); local
56 ASSERT_TRUE(obj1 != NULL);
73 IndirectRef iref1 = irt.Add(cookie, obj1);
81 EXPECT_EQ(obj1, irt.Get(iref1));
100 iref1 = irt.Add(cookie, obj1);
120 iref1 = irt.Add(cookie, obj1);
149 iref1 = irt.Add(cookie, obj1);
160 iref1 = irt.Add(cookie, obj1);
188 iref1 = irt.Add(cookie, obj1);
H A Djni_internal.cc865 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) { argument
866 if (obj1 == obj2) {
870 return (soa.Decode<mirror::Object*>(obj1) == soa.Decode<mirror::Object*>(obj2))
/art/test/MyClassNatives/
H A DMyClassNatives.java35 static native int getText(long val1, Object obj1, long val2, Object obj2); argument
/art/compiler/jni/
H A Djni_compiler_test.cc906 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { argument
908 EXPECT_TRUE(env->IsSameObject(JniCompilerTest::jobj_, obj1));

Completed in 395 milliseconds