Searched refs:thread_ (Results 1 - 11 of 11) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_main.cc216 thread_(nullptr),
452 thread_ = Thread::Current();
456 MutexLock locker(thread_, thread_start_lock_);
458 thread_start_cond_.Broadcast(thread_);
462 CHECK_EQ(thread_->GetState(), kNative);
463 Locks::mutator_lock_->AssertNotHeld(thread_);
464 thread_->SetState(kWaitingInMainDebuggerLoop);
492 MutexLock mu(thread_, attach_lock_);
494 attach_cond_.Broadcast(thread_);
506 CHECK_EQ(thread_
[all...]
H A Djdwp.h361 Thread* thread_; member in struct:art::JDWP::JdwpState
/art/runtime/
H A Dsignal_catcher.h58 Thread* thread_ GUARDED_BY(lock_);
H A Dsignal_catcher.cc71 thread_(nullptr) {
79 while (thread_ == nullptr) {
193 signal_catcher->thread_ = self;
H A Dstack.cc101 : thread_(thread),
220 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id);
222 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id);
435 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
439 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
471 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
475 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
476 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true;
576 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
773 DCHECK(thread_
[all...]
H A Dmonitor_test.cc52 Thread* thread_; member in class:art::MonitorTest
117 monitor_test_->thread_ = self; // Pass the Thread.
235 monitor_test_->thread_->Interrupt(self);
H A Dinstrumentation.cc326 thread_(thread_in),
367 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
382 Thread* const thread_; member in struct:art::instrumentation::FINAL
H A Dstack.h592 return thread_;
623 num_frames_ = ComputeNumFrames(thread_, walk_kind_);
816 Thread* const thread_; member in class:art::StackVisitor
H A Ddebugger.cc3611 thread_(nullptr),
3616 thread_ = DecodeThread(soa, thread_id, &error_);
3618 if (thread_ == soa.Self()) {
3633 CHECK_EQ(suspended_thread, thread_);
3641 return thread_;
3650 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3655 Thread* thread_; member in class:art::ScopedDebuggerThreadSuspension
/art/runtime/gc/space/
H A Dregion_space.cc351 r->thread_ = self;
376 r->thread_ = nullptr;
416 << " is_newly_allocated=" << is_newly_allocated_ << " is_a_tlab=" << is_a_tlab_ << " thread=" << thread_ << "\n"; local
H A Dregion_space.h240 is_newly_allocated_(false), is_a_tlab_(false), thread_(nullptr) {}
246 is_newly_allocated_(false), is_a_tlab_(false), thread_(nullptr) {
272 thread_ = nullptr;
476 Thread* thread_; // The owning thread if it's a tlab. member in class:art::gc::space::FINAL::Region

Completed in 173 milliseconds