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

/art/runtime/entrypoints/quick/
H A Dquick_lock_entrypoints.cc35 obj = obj->MonitorEnter(self); // May block
39 obj->MonitorEnter(self); // May block
H A Dquick_jni_entrypoints.cc45 self->DecodeJObject(to_lock)->MonitorEnter(self);
/art/runtime/entrypoints/portable/
H A Dportable_lock_entrypoints.cc26 obj->MonitorEnter(thread); // May block.
H A Dportable_jni_entrypoints.cc36 self->DecodeJObject(to_lock)->MonitorEnter(self);
/art/runtime/
H A Dobject_lock.cc27 obj_->MonitorEnter(self_);
H A Dmonitor_test.cc118 monitor_test_->object_.Get()->MonitorEnter(self); // Lock the object. This should transition
270 monitor_test_->watchdog_object_.Get()->MonitorEnter(self); // Lock the object.
347 test->watchdog_object_.Get()->MonitorEnter(self); // Lock the object.
H A Dmonitor.h63 static mirror::Object* MonitorEnter(Thread* thread, mirror::Object* obj)
H A Dcheck_jni.cc1663 static jint MonitorEnter(JNIEnv* env, jobject obj) { function in class:art::CheckJNI
1668 return CHECK_JNI_EXIT("I", baseEnv(env)->MonitorEnter(env, obj));
2003 CheckJNI::MonitorEnter,
H A Djni_internal_test.cc1632 env_->MonitorEnter(object);
1641 env_->MonitorEnter(object);
1657 // It's an error to call MonitorEnter or MonitorExit on nullptr.
1660 env_->MonitorEnter(nullptr);
1661 check_jni_abort_catcher.Check("in call to MonitorEnter");
H A Dmonitor.cc719 mirror::Object* Monitor::MonitorEnter(Thread* self, mirror::Object* obj) { function in class:art::Monitor
996 // TODO: use the JNI implementation's table of explicit MonitorEnter calls and dump those too.
H A Dtransaction_test.cc59 h_obj->MonitorEnter(soa.Self());
H A Djni_internal.cc2461 static jint MonitorEnter(JNIEnv* env, jobject java_object) NO_THREAD_SAFETY_ANALYSIS {
2465 o = o->MonitorEnter(soa.Self());
2937 JNI::MonitorEnter,
/art/runtime/interpreter/
H A Dinterpreter_common.h83 ref->MonitorEnter(self);
/art/runtime/mirror/
H A Dobject-inl.h93 inline mirror::Object* Object::MonitorEnter(Thread* self) { function in class:art::mirror::Object
94 return Monitor::MonitorEnter(self, this);
H A Dobject.h123 mirror::Object* MonitorEnter(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
/art/compiler/jni/quick/
H A Djni_compiler.cc97 const Offset monitor_enter(OFFSETOF_MEMBER(JNINativeInterface, MonitorEnter));
/art/compiler/llvm/
H A Dintrinsic_func_list.def1520 _EVAL_DEF_INTRINSICS_FUNC(MonitorEnter,
H A Dgbc_expander.cc3629 case IntrinsicHelper::MonitorEnter: {
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc1229 art::llvm::IntrinsicHelper::MonitorEnter,

Completed in 203 milliseconds