Searched refs:thread_ (Results 1 – 14 of 14) sorted by relevance
/art/runtime/ |
D | signal_catcher.cc | 75 thread_(nullptr) { in SignalCatcher() 83 while (thread_ == nullptr) { in SignalCatcher() 183 signal_catcher->thread_ = self; in Run()
|
D | signal_catcher.h | 57 Thread* thread_ GUARDED_BY(lock_);
|
D | stack.cc | 67 : 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()
|
D | thread_pool.h | 89 Thread* GetThread() const { return thread_; } in GetThread() 100 Thread* thread_; variable
|
D | stack.h | 179 return thread_; in GetThread() 214 num_frames_ = ComputeNumFrames(thread_, walk_kind_); in GetNumFrames() 354 Thread* const thread_; variable
|
D | monitor_test.cc | 51 Thread* thread_; member in art::MonitorTest 70 monitor_test_->thread_ = self; // Pass the Thread. in Run() 188 monitor_test_->thread_->Interrupt(self); in Run()
|
D | thread_pool.cc | 123 worker->thread_ = Thread::Current(); in Callback() 125 worker->thread_->SetIsRuntimeThread(true); in Callback()
|
D | instrumentation.cc | 468 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/ |
D | events-inl.h | 448 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/ |
D | profile_saver.cc | 254 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/ |
D | region_space.h | 396 thread_(nullptr), in Region() 418 thread_ = nullptr; in Init() 619 Thread* thread_; // The owning thread if it's a tlab. variable
|
D | region_space.cc | 877 r->thread_ = self; in AllocNewTlab() 903 r->thread_ = nullptr; in RevokeThreadLocalBuffersLocked() 968 << " thread=" << thread_ << '\n'; in Dump() 1021 thread_ = nullptr; in Clear()
|
D | region_space-inl.h | 501 bytes = thread_->GetTlabEnd() - begin_; in BytesAllocated()
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 3061 : 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
|