Home
last modified time | relevance | path

Searched refs:thread_ (Results 1 – 14 of 14) sorted by relevance

/art/runtime/
Dsignal_catcher.cc75 thread_(nullptr) { in SignalCatcher()
83 while (thread_ == nullptr) { in SignalCatcher()
183 signal_catcher->thread_ = self; in Run()
Dsignal_catcher.h57 Thread* thread_ GUARDED_BY(lock_);
Dstack.cc67 : thread_(thread), in StackVisitor()
201 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); in GetVRegFromDebuggerShadowFrame()
203 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id); in GetVRegFromDebuggerShadowFrame()
482 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); in PrepareSetVReg()
486 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; in PrepareSetVReg()
488 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true; in PrepareSetVReg()
628 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight()); in GetNextMethodAndDexPc()
832 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack()
837 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); in WalkStack()
932 instrumentation_stack = *thread_->GetInstrumentationStack(); in WalkStack()
Dthread_pool.h89 Thread* GetThread() const { return thread_; } in GetThread()
100 Thread* thread_; variable
Dstack.h179 return thread_; in GetThread()
214 num_frames_ = ComputeNumFrames(thread_, walk_kind_); in GetNumFrames()
354 Thread* const thread_; variable
Dmonitor_test.cc51 Thread* thread_; member in art::MonitorTest
70 monitor_test_->thread_ = self; // Pass the Thread. in Run()
188 monitor_test_->thread_->Interrupt(self); in Run()
Dthread_pool.cc123 worker->thread_ = Thread::Current(); in Callback()
125 worker->thread_->SetIsRuntimeThread(true); in Callback()
Dinstrumentation.cc468 thread_(thread_in), in InstrumentationRestoreStack()
512 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, in InstrumentationRestoreStack()
523 Thread* const thread_; in InstrumentationRestoreStack() member
/art/openjdkjvmti/
Devents-inl.h448 explicit ScopedDisablePopFrame(art::Thread* thread) : thread_(thread) { in ScopedDisablePopFrame()
449 art::Locks::mutator_lock_->AssertSharedHeld(thread_); in ScopedDisablePopFrame()
450 art::MutexLock mu(thread_, *art::Locks::thread_list_lock_); in ScopedDisablePopFrame()
451 JvmtiGlobalTLSData* data = ThreadUtil::GetOrCreateGlobalTLSData(thread_); in ScopedDisablePopFrame()
453 thread_, art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); in ScopedDisablePopFrame()
464 art::Locks::mutator_lock_->AssertSharedHeld(thread_); in ~ScopedDisablePopFrame()
465 art::MutexLock mu(thread_, *art::Locks::thread_list_lock_); in ~ScopedDisablePopFrame()
466 JvmtiGlobalTLSData* data = ThreadUtil::GetGlobalTLSData(thread_); in ~ScopedDisablePopFrame()
472 art::Thread* thread_;
/art/runtime/jit/
Dprofile_saver.cc254 explicit ScopedDefaultPriority(pthread_t thread) : thread_(thread) { in ScopedDefaultPriority()
255 SetProfileSaverThreadPriority(thread_, GetDefaultThreadPriority()); in ScopedDefaultPriority()
259 SetProfileSaverThreadPriority(thread_, kProfileSaverPthreadPriority); in ~ScopedDefaultPriority()
263 const pthread_t thread_; member in art::ScopedDefaultPriority
/art/runtime/gc/space/
Dregion_space.h396 thread_(nullptr), in Region()
418 thread_ = nullptr; in Init()
619 Thread* thread_; // The owning thread if it's a tlab. variable
Dregion_space.cc877 r->thread_ = self; in AllocNewTlab()
903 r->thread_ = nullptr; in RevokeThreadLocalBuffersLocked()
968 << " thread=" << thread_ << '\n'; in Dump()
1021 thread_ = nullptr; in Clear()
Dregion_space-inl.h501 bytes = thread_->GetTlabEnd() - begin_; in BytesAllocated()
/art/runtime/gc/collector/
Dconcurrent_copying.cc3061 : collector_(collector), thread_(thread) { in RefFieldsVisitor()
3089 collector_->MarkRoot</*kGrayImmuneObject=*/false>(thread_, root); in VisitRoot()
3094 Thread* const thread_; member in art::gc::collector::ConcurrentCopying::RefFieldsVisitor