Home
last modified time | relevance | path

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

/art/test/1942-suspend-raw-monitor-exit/
Dnative_suspend_monitor.cc37 std::atomic<bool> locked(false);
47 locked.store(true); in Java_art_Test1942_nativeRun()
55 locked.store(false); in Java_art_Test1942_nativeRun()
59 return locked.load(); in Java_art_Test1942_isLocked()
/art/test/1943-suspend-raw-monitor-wait/
Dnative_suspend_monitor.cc34 std::atomic<bool> locked(false);
45 locked.store(true); in Java_art_Test1943_nativeRun()
52 locked.store(false); in Java_art_Test1943_nativeRun()
57 while (!locked.load()) { } in Java_art_Test1943_waitForPause()
/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc140 jobject locked, in JniMethodEndSynchronized() argument
143 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop. in JniMethodEndSynchronized()
185 jobject locked, in JniMethodEndWithReferenceSynchronized() argument
188 UnlockJniSynchronizedMethod(locked, self); in JniMethodEndWithReferenceSynchronized()
210 jobject locked = called->IsSynchronized() ? handle_scope->GetHandle(0).ToJObject() : nullptr; in GenericJniMethodEnd() local
213 if (locked != nullptr) { in GenericJniMethodEnd()
215 UnlockJniSynchronizedMethod(locked, self); in GenericJniMethodEnd()
220 if (locked != nullptr) { in GenericJniMethodEnd()
222 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop. in GenericJniMethodEnd()
Dquick_entrypoints.h64 extern void JniMethodEndSynchronized(uint32_t saved_local_ref_cookie, jobject locked,
78 jobject locked, Thread* self)
/art/runtime/entrypoints/
Dentrypoint_utils.h177 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self)
Dentrypoint_utils-inl.h744 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) { in UnlockJniSynchronizedMethod() argument
752 self->DecodeJObject(locked)->MonitorExit(self); in UnlockJniSynchronizedMethod()