Home | History | Annotate | Download | only in runtime

Lines Matching defs:thread

25 #include "thread-inl.h"
45 // thread running the signal handler.
47 // 4. save the thread's state to the TLS of the current thread using 'setjmp'
57 // thread. This results in a return with a non-zero value from 'setjmp'. We detect this
204 // We can only be running Java code in the current thread if it
207 Thread* thread = Thread::Current();
208 if (thread == nullptr) {
209 VLOG(signals) << "no current thread";
213 ThreadState state = thread->GetState();
219 // Current thread is runnable.
221 if (!Locks::mutator_lock_->IsSharedHeld(thread)) {
324 Thread* self = Thread::Current();