Searched refs:MonitorExit (Results 1 – 19 of 19) sorted by relevance
/art/runtime/ |
D | monitor_test.cc | 124 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis. in Run() 136 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis. in Run() 165 monitor_test_->object_.Get()->MonitorExit(self); // Release the object. Appeases analysis. in Run() 275 monitor_test_->watchdog_object_.Get()->MonitorExit(self); // Release the lock. in Run() 349 test->watchdog_object_.Get()->MonitorExit(self); // Release the lock. in CommonWaitSetup()
|
D | object_lock.cc | 32 obj_->MonitorExit(self_); in ~ObjectLock()
|
D | monitor.h | 66 static bool MonitorExit(Thread* thread, mirror::Object* obj)
|
D | jni_internal_test.cc | 1636 env_->MonitorExit(object); in TEST_F() 1646 env_->MonitorExit(object); in TEST_F() 1657 env_->MonitorExit(object); in TEST_F() 1662 env_->MonitorExit(object); in TEST_F() 1673 env_->MonitorExit(nullptr); in TEST_F()
|
D | check_jni.cc | 1671 static jint MonitorExit(JNIEnv* env, jobject obj) { in MonitorExit() function in art::CheckJNI 1676 return CHECK_JNI_EXIT("I", baseEnv(env)->MonitorExit(env, obj)); in MonitorExit() 2004 CheckJNI::MonitorExit,
|
D | transaction_test.cc | 65 h_obj->MonitorExit(soa.Self()); in TEST_F()
|
D | monitor.cc | 785 bool Monitor::MonitorExit(Thread* self, mirror::Object* obj) { in MonitorExit() function in art::Monitor
|
D | jni_internal.cc | 2471 static jint MonitorExit(JNIEnv* env, jobject java_object) NO_THREAD_SAFETY_ANALYSIS { in MonitorExit() function in art::JNI 2475 o->MonitorExit(soa.Self()); in MonitorExit() 2938 JNI::MonitorExit,
|
D | thread.cc | 1165 entered_monitor->MonitorExit(self); in MonitorExitVisitor()
|
/art/runtime/entrypoints/portable/ |
D | portable_lock_entrypoints.cc | 37 obj->MonitorExit(thread); in art_portable_unlock_object_from_code()
|
/art/runtime/entrypoints/quick/ |
D | quick_lock_entrypoints.cc | 58 return obj->MonitorExit(self) ? 0 /* Success */ : -1 /* Failure */; in artUnlockObjectFromCode()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 87 ref->MonitorExit(self); in DoMonitorExit()
|
/art/runtime/mirror/ |
D | object-inl.h | 97 inline bool Object::MonitorExit(Thread* self) { in MonitorExit() function 98 return Monitor::MonitorExit(self, this); in MonitorExit()
|
D | object.h | 125 bool MonitorExit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 98 const Offset monitor_exit(OFFSETOF_MEMBER(JNINativeInterface, MonitorExit)); in ArtJniCompileMethodInternal()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 627 self->DecodeJObject(locked)->MonitorExit(self); in UnlockJniSynchronizedMethod()
|
/art/compiler/llvm/ |
D | intrinsic_func_list.def | 1527 _EVAL_DEF_INTRINSICS_FUNC(MonitorExit,
|
D | gbc_expander.cc | 3633 case IntrinsicHelper::MonitorExit: { in ExpandIntrinsic()
|
/art/compiler/dex/portable/ |
D | mir_to_gbc.cc | 1235 art::llvm::IntrinsicHelper::MonitorExit, in ConvertMIRNode()
|