Home
last modified time | relevance | path

Searched refs:MonitorEnter (Results 1 – 20 of 20) sorted by relevance

/art/test/980-redefine-object/src-ex/
DTestWatcher.java28 private static void MonitorEnter() { in MonitorEnter() method in TestWatcher
45 MonitorEnter(); in DisableReporting()
64 MonitorEnter(); in NotifyConstructed()
/art/test/1932-monitor-events-misc/
Dexpected.txt7 Throwing exception in MonitorEnter
21 Throwing exception in MonitorEnter
62 Monitor usage in MonitorEnter: MonitorUsage{ monitor: NamedLock[Lock testMonitorInfoInEvents], owne…
89 Testing the lock state if MonitorEnter throws in a native method
91 Unlocking controller1 in MonitorEnter
92 Throwing exception in MonitorEnter
94 MonitorEnter returned: -1
99 Unlocking controller1 in MonitorEnter
102 MonitorEnter returned: -1
Dmonitor_misc.cc51 jint res = env->MonitorEnter(lock); in Java_art_Test1932_doNativeLockPrint()
/art/test/1930-monitor-info/
Dmonitor.cc59 if (env->MonitorEnter(l) != 0) { in Java_art_Test1930_executeLockedNative()
/art/openjdkjvmti/
Dti_monitor.cc79 void MonitorEnter(art::Thread* self, bool suspend) NO_THREAD_SAFETY_ANALYSIS { in MonitorEnter() function in openjdkjvmti::JvmtiMonitor
194 MonitorEnter(self, /*suspend=*/ true); in Wait()
264 monitor->MonitorEnter(self, /*suspend=*/false); in RawMonitorEnterNoSuspend()
277 monitor->MonitorEnter(self, /*suspend=*/true); in RawMonitorEnter()
Dti_redefine.cc385 GetMirrorClass()->MonitorEnter(driver_->self_); in ClassRedefinition()
/art/runtime/entrypoints/quick/
Dquick_lock_entrypoints.cc32 ObjPtr<mirror::Object> object = obj->MonitorEnter(self); // May block in artLockObjectFromCode()
Dquick_jni_entrypoints.cc83 self->DecodeJObject(to_lock)->MonitorEnter(self); in JniMethodStartSynchronized()
/art/runtime/
Dobject_lock.cc28 obj_->MonitorEnter(self_); in ObjectLock()
Dmonitor_test.cc71 monitor_test_->object_.Get()->MonitorEnter(self); // Lock the object. This should transition in Run()
223 monitor_test_->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in Run()
286 test->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in CommonWaitSetup()
Dmonitor.h72 static ObjPtr<mirror::Object> MonitorEnter(Thread* thread,
Dtransaction_test.cc120 h_obj->MonitorEnter(soa.Self()); in TEST_F()
Dmonitor.cc1080 ObjPtr<mirror::Object> Monitor::MonitorEnter(Thread* self, in MonitorEnter() function in art::Monitor
/art/test/1922-owned-monitors-info/
Downed_monitors.cc38 return env->MonitorEnter(target) != 0; in doMonitorEnter()
/art/runtime/mirror/
Dobject-inl.h82 inline ObjPtr<mirror::Object> Object::MonitorEnter(Thread* self) { in MonitorEnter() function
83 return Monitor::MonitorEnter(self, this, /*trylock=*/false); in MonitorEnter()
87 return Monitor::MonitorEnter(self, this, /*trylock=*/true); in MonitorTryEnter()
Dobject.h160 ObjPtr<mirror::Object> MonitorEnter(Thread* self)
/art/runtime/jni/
Djni_internal_test.cc2321 env_->MonitorEnter(object); in TEST_F()
2330 env_->MonitorEnter(object); in TEST_F()
2349 env_->MonitorEnter(nullptr); in TEST_F()
2365 env_->MonitorEnter(jobj_); in TEST_F()
2375 env->MonitorEnter(thisObj); in Java_MyClassNatives_foo_enter_no_exit()
2425 env_->MonitorEnter(global_ref); in TEST_F()
Djni_internal.cc2614 static jint MonitorEnter(JNIEnv* env, jobject java_object) NO_THREAD_SAFETY_ANALYSIS { in MonitorEnter() function in art::JNI
2618 o = o->MonitorEnter(soa.Self()); in MonitorEnter()
3101 JNI::MonitorEnter,
Dcheck_jni.cc2637 static jint MonitorEnter(JNIEnv* env, jobject obj) { in PRIMITIVE_ARRAY_FUNCTIONS()
2647 result.i = baseEnv(env)->MonitorEnter(env, obj); in PRIMITIVE_ARRAY_FUNCTIONS()
3988 CheckJNI::MonitorEnter,
/art/runtime/interpreter/
Dinterpreter_common.h76 h_ref->MonitorEnter(self); in DoMonitorEnter()