Searched refs:locked (Results 1 – 6 of 6) sorted by relevance
/art/test/1942-suspend-raw-monitor-exit/ |
D | native_suspend_monitor.cc | 37 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/ |
D | native_suspend_monitor.cc | 34 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/ |
D | quick_jni_entrypoints.cc | 140 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()
|
D | quick_entrypoints.h | 64 extern void JniMethodEndSynchronized(uint32_t saved_local_ref_cookie, jobject locked, 78 jobject locked, Thread* self)
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.h | 177 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self)
|
D | entrypoint_utils-inl.h | 744 inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) { in UnlockJniSynchronizedMethod() argument 752 self->DecodeJObject(locked)->MonitorExit(self); in UnlockJniSynchronizedMethod()
|