/art/test/980-redefine-object/src-ex/ |
D | TestWatcher.java | 32 private static void MonitorExit() { in MonitorExit() method in TestWatcher 52 MonitorExit(); in EnableReporting() 73 MonitorExit(); in NotifyConstructed()
|
/art/runtime/entrypoints/quick/ |
D | quick_lock_entrypoints.cc | 41 bool unlocked = object->MonitorExit(self); in artLockObjectFromCode() 61 return obj->MonitorExit(self) ? 0 /* Success */ : -1 /* Failure */; in artUnlockObjectFromCode()
|
D | quick_jni_entrypoints.cc | 102 locked->MonitorExit(self); in artJniUnlockObject()
|
/art/runtime/ |
D | object_lock.cc | 33 obj_->MonitorExit(self_); in ~ObjectLock() 60 obj_->MonitorExit(self_); in ~ObjectTryLock()
|
D | monitor_test.cc | 83 obj->MonitorExit(self); // To appease analysis. in Run() 95 obj->MonitorExit(self); // To appease analysis. in Run() 124 obj->MonitorExit(self); // Release the object. Appeases analysis. in Run() 235 watchdog_obj->MonitorExit(self); // Release the lock. in Run() 300 watchdog_obj->MonitorExit(self); // Release the lock. in CommonWaitSetup()
|
D | monitor.h | 89 EXPORT static bool MonitorExit(Thread* thread, ObjPtr<mirror::Object> obj)
|
D | transaction_test.cc | 129 h_obj->MonitorExit(soa.Self()); in TEST_F()
|
D | monitor.cc | 1216 bool Monitor::MonitorExit(Thread* self, ObjPtr<mirror::Object> obj) { in MonitorExit() function in art::Monitor
|
D | thread.cc | 2584 entered_monitor->MonitorExit(self_); in VisitRoot()
|
/art/test/1932-monitor-events-misc/ |
D | monitor_misc.cc | 55 env->MonitorExit(lock); in Java_art_Test1932_doNativeLockPrint()
|
/art/test/1930-monitor-info/ |
D | monitor.cc | 63 env->MonitorExit(l); in Java_art_Test1930_executeLockedNative()
|
/art/runtime/interpreter/ |
D | lock_count_data.cc | 75 obj->MonitorExit(self); in MonitorExitHelper()
|
D | interpreter_common.h | 81 bool unlocked = h_ref->MonitorExit(self); in DoMonitorEnter() 96 h_ref->MonitorExit(self); in DoMonitorExit()
|
/art/test/1922-owned-monitors-info/ |
D | owned_monitors.cc | 41 return env->MonitorExit(target) != 0; in doMonitorExit()
|
/art/openjdkjvmti/ |
D | ti_monitor.cc | 124 bool MonitorExit(art::Thread* self) NO_THREAD_SAFETY_ANALYSIS { in MonitorExit() function in openjdkjvmti::JvmtiMonitor 290 if (!monitor->MonitorExit(self)) { in RawMonitorExit()
|
/art/runtime/jni/ |
D | jni_internal_test.cc | 2450 env_->MonitorExit(object); in TEST_F() 2460 env_->MonitorExit(object); in TEST_F() 2471 env_->MonitorExit(object); in TEST_F() 2476 env_->MonitorExit(object); in TEST_F() 2487 env_->MonitorExit(nullptr); in TEST_F() 2494 env->MonitorExit(thisObj); in Java_MyClassNatives_foo_exit()
|
D | jni_internal.cc | 2739 static jint MonitorExit(JNIEnv* env, jobject java_object) NO_THREAD_SAFETY_ANALYSIS { in MonitorExit() function in art::JNI 2744 o->MonitorExit(soa.Self()); in MonitorExit() 3287 JNIImpl::MonitorExit,
|
D | check_jni.cc | 2714 static jint MonitorExit(JNIEnv* env, jobject obj) { in MonitorExit() function in art::__anon846bc2ca0111::CheckJNI 2724 result.i = baseEnv(env)->MonitorExit(env, obj); in MonitorExit() 4043 CheckJNI::MonitorExit,
|
/art/runtime/mirror/ |
D | object-inl.h | 90 inline bool Object::MonitorExit(Thread* self) { in MonitorExit() function 91 return Monitor::MonitorExit(self, this); in MonitorExit()
|
D | object.h | 175 bool MonitorExit(Thread* self)
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 879 env_->MonitorExit(jobj_); in CompileAndRun_fooJJ_synchronizedImpl() 897 env_->MonitorExit(jobj_); // Remains "fat-locked" even if actually unlocked. in CompileAndRun_fooJJ_synchronizedImpl() 1255 env_->MonitorExit(jklass_); in CompileAndRunStaticSynchronizedIntObjectObjectMethodImpl() 1273 env_->MonitorExit(jklass_); // Remains "fat-locked" even if actually unlocked. in CompileAndRunStaticSynchronizedIntObjectObjectMethodImpl()
|