Home
last modified time | relevance | path

Searched refs:locked (Results 1 – 4 of 4) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc143 jobject locked, in JniMethodEndSynchronized() argument
146 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop. in JniMethodEndSynchronized()
188 jobject locked, in JniMethodEndWithReferenceSynchronized() argument
191 UnlockJniSynchronizedMethod(locked, self); in JniMethodEndWithReferenceSynchronized()
213 jobject locked = called->IsSynchronized() ? handle_scope->GetHandle(0).ToJObject() : nullptr; in GenericJniMethodEnd() local
216 if (locked != nullptr) { in GenericJniMethodEnd()
218 UnlockJniSynchronizedMethod(locked, self); in GenericJniMethodEnd()
223 if (locked != nullptr) { in GenericJniMethodEnd()
225 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop. in GenericJniMethodEnd()
Dquick_entrypoints.h63 extern void JniMethodEndSynchronized(uint32_t saved_local_ref_cookie, jobject locked,
77 jobject locked, Thread* self)
/art/runtime/entrypoints/
Dentrypoint_utils.h160 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self)
Dentrypoint_utils-inl.h812 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) { in UnlockJniSynchronizedMethod() argument
820 self->DecodeJObject(locked)->MonitorExit(self); in UnlockJniSynchronizedMethod()