Searched refs:MonitorEnter (Results 1 – 19 of 19) sorted by relevance
/art/runtime/entrypoints/quick/ |
D | quick_lock_entrypoints.cc | 35 obj = obj->MonitorEnter(self); // May block in artLockObjectFromCode() 39 obj->MonitorEnter(self); // May block in artLockObjectFromCode()
|
D | quick_jni_entrypoints.cc | 45 self->DecodeJObject(to_lock)->MonitorEnter(self); in JniMethodStartSynchronized()
|
/art/runtime/entrypoints/portable/ |
D | portable_lock_entrypoints.cc | 26 obj->MonitorEnter(thread); // May block. in art_portable_lock_object_from_code()
|
D | portable_jni_entrypoints.cc | 36 self->DecodeJObject(to_lock)->MonitorEnter(self); in art_portable_jni_method_start_synchronized()
|
/art/runtime/ |
D | object_lock.cc | 27 obj_->MonitorEnter(self_); in ObjectLock()
|
D | monitor_test.cc | 118 … monitor_test_->object_.Get()->MonitorEnter(self); // Lock the object. This should transition in Run() 270 monitor_test_->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in Run() 347 test->watchdog_object_.Get()->MonitorEnter(self); // Lock the object. in CommonWaitSetup()
|
D | monitor.h | 63 static mirror::Object* MonitorEnter(Thread* thread, mirror::Object* obj)
|
D | jni_internal_test.cc | 1643 env_->MonitorEnter(object); in TEST_F() 1652 env_->MonitorEnter(object); in TEST_F() 1671 env_->MonitorEnter(nullptr); in TEST_F()
|
D | check_jni.cc | 1663 static jint MonitorEnter(JNIEnv* env, jobject obj) { in MonitorEnter() function in art::CheckJNI 1668 return CHECK_JNI_EXIT("I", baseEnv(env)->MonitorEnter(env, obj)); in MonitorEnter() 2003 CheckJNI::MonitorEnter,
|
D | transaction_test.cc | 59 h_obj->MonitorEnter(soa.Self()); in TEST_F()
|
D | monitor.cc | 719 mirror::Object* Monitor::MonitorEnter(Thread* self, mirror::Object* obj) { in MonitorEnter() function in art::Monitor
|
D | jni_internal.cc | 2459 static jint MonitorEnter(JNIEnv* env, jobject java_object) NO_THREAD_SAFETY_ANALYSIS { in MonitorEnter() function in art::JNI 2463 o = o->MonitorEnter(soa.Self()); in MonitorEnter() 2937 JNI::MonitorEnter,
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 83 ref->MonitorEnter(self); in DoMonitorEnter()
|
/art/runtime/mirror/ |
D | object-inl.h | 93 inline mirror::Object* Object::MonitorEnter(Thread* self) { in MonitorEnter() function 94 return Monitor::MonitorEnter(self, this); in MonitorEnter()
|
D | object.h | 123 mirror::Object* MonitorEnter(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 97 const Offset monitor_enter(OFFSETOF_MEMBER(JNINativeInterface, MonitorEnter)); in ArtJniCompileMethodInternal()
|
/art/compiler/llvm/ |
D | intrinsic_func_list.def | 1520 _EVAL_DEF_INTRINSICS_FUNC(MonitorEnter,
|
D | gbc_expander.cc | 3629 case IntrinsicHelper::MonitorEnter: { in ExpandIntrinsic()
|
/art/compiler/dex/portable/ |
D | mir_to_gbc.cc | 1229 art::llvm::IntrinsicHelper::MonitorEnter, in ConvertMIRNode()
|