Searched refs:thread_ (Results 1 – 9 of 9) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_main.cc | 205 thread_(NULL), in JdwpState() 418 thread_ = Thread::Current(); in Run() 422 MutexLock locker(thread_, thread_start_lock_); in Run() 424 thread_start_cond_.Broadcast(thread_); in Run() 428 CHECK_EQ(thread_->GetState(), kNative); in Run() 429 Locks::mutator_lock_->AssertNotHeld(thread_); in Run() 430 thread_->SetState(kWaitingInMainDebuggerLoop); in Run() 458 MutexLock mu(thread_, attach_lock_); in Run() 460 attach_cond_.Broadcast(thread_); in Run() 472 CHECK_EQ(thread_->GetState(), kWaitingInMainDebuggerLoop); in Run() [all …]
|
D | jdwp.h | 339 Thread* thread_; member
|
/art/runtime/ |
D | signal_catcher.cc | 68 thread_(NULL) { in SignalCatcher() 76 while (thread_ == NULL) { in SignalCatcher() 206 signal_catcher->thread_ = self; in Run()
|
D | stack.cc | 92 : thread_(thread), cur_shadow_frame_(NULL), in StackVisitor() 99 : thread_(thread), cur_shadow_frame_(NULL), in StackVisitor() 458 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight()); in GetNextMethodAndDexPc() 524 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack() 529 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL; in WalkStack() 559 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth); in WalkStack()
|
D | signal_catcher.h | 58 Thread* thread_ GUARDED_BY(lock_);
|
D | monitor_test.cc | 51 Thread* thread_; member in art::MonitorTest 117 monitor_test_->thread_ = self; // Pass the Thread. in Run() 235 monitor_test_->thread_->Interrupt(self); in Run()
|
D | stack.h | 565 num_frames_ = ComputeNumFrames(thread_); in GetNumFrames() 747 Thread* const thread_; variable
|
D | instrumentation.cc | 344 : StackVisitor(thread, NULL), thread_(thread), in InstrumentationRestoreStack() 385 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, in InstrumentationRestoreStack() 400 Thread* const thread_; in InstrumentationRestoreStack() member
|
D | debugger.cc | 3351 thread_(nullptr), in ScopedThreadSuspension() 3358 error_ = DecodeThread(soa, thread_id, thread_); in ScopedThreadSuspension() 3361 if (thread_ == soa.Self()) { in ScopedThreadSuspension() 3379 CHECK_EQ(suspended_thread, thread_); in ScopedThreadSuspension() 3387 return thread_; in GetThread() 3396 Runtime::Current()->GetThreadList()->Resume(thread_, true); in ~ScopedThreadSuspension() 3401 Thread* thread_; member in art::ScopedThreadSuspension
|