Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_lock_entrypoints.cc35 obj = obj->MonitorEnter(self); // May block in artLockObjectFromCode()
39 obj->MonitorEnter(self); // May block in artLockObjectFromCode()
Dquick_jni_entrypoints.cc45 self->DecodeJObject(to_lock)->MonitorEnter(self); in JniMethodStartSynchronized()
/art/runtime/entrypoints/portable/
Dportable_lock_entrypoints.cc26 obj->MonitorEnter(thread); // May block. in art_portable_lock_object_from_code()
Dportable_jni_entrypoints.cc36 self->DecodeJObject(to_lock)->MonitorEnter(self); in art_portable_jni_method_start_synchronized()
/art/runtime/
Dobject_lock.cc27 obj_->MonitorEnter(self_); in ObjectLock()
Dmonitor_test.cc118 … 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()
Dmonitor.h63 static mirror::Object* MonitorEnter(Thread* thread, mirror::Object* obj)
Djni_internal_test.cc1643 env_->MonitorEnter(object); in TEST_F()
1652 env_->MonitorEnter(object); in TEST_F()
1671 env_->MonitorEnter(nullptr); in TEST_F()
Dcheck_jni.cc1663 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,
Dtransaction_test.cc59 h_obj->MonitorEnter(soa.Self()); in TEST_F()
Dmonitor.cc719 mirror::Object* Monitor::MonitorEnter(Thread* self, mirror::Object* obj) { in MonitorEnter() function in art::Monitor
Djni_internal.cc2459 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/
Dinterpreter_common.h83 ref->MonitorEnter(self); in DoMonitorEnter()
/art/runtime/mirror/
Dobject-inl.h93 inline mirror::Object* Object::MonitorEnter(Thread* self) { in MonitorEnter() function
94 return Monitor::MonitorEnter(self, this); in MonitorEnter()
Dobject.h123 mirror::Object* MonitorEnter(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
/art/compiler/jni/quick/
Djni_compiler.cc97 const Offset monitor_enter(OFFSETOF_MEMBER(JNINativeInterface, MonitorEnter)); in ArtJniCompileMethodInternal()
/art/compiler/llvm/
Dintrinsic_func_list.def1520 _EVAL_DEF_INTRINSICS_FUNC(MonitorEnter,
Dgbc_expander.cc3629 case IntrinsicHelper::MonitorEnter: { in ExpandIntrinsic()
/art/compiler/dex/portable/
Dmir_to_gbc.cc1229 art::llvm::IntrinsicHelper::MonitorEnter, in ConvertMIRNode()