/art/runtime/metrics/ |
D | reporter.cc | 52 DCHECK(!thread_.has_value()) << "The config cannot be reloaded after the background " in ReloadConfig() 62 CHECK(!thread_.has_value()); in MaybeStartBackgroundThread() 71 thread_.emplace(&MetricsReporter::BackgroundThreadRun, this); in MaybeStartBackgroundThread() 76 if (thread_.has_value()) { in MaybeStopBackgroundThread() 78 thread_->join(); in MaybeStopBackgroundThread() 79 thread_.reset(); in MaybeStopBackgroundThread() 84 if (ShouldReportAtStartup() && thread_.has_value()) { in NotifyStartupCompleted() 102 if (thread_.has_value()) { in RequestMetricsReport() 112 if (thread_.has_value()) { in SetCompilationInfo()
|
D | reporter.h | 173 std::optional<std::thread> thread_; variable
|
/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 | stack.cc | 67 : thread_(thread), in StackVisitor() 216 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); in GetVRegFromDebuggerShadowFrame() 218 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id); in GetVRegFromDebuggerShadowFrame() 489 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); in PrepareSetVReg() 493 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; in PrepareSetVReg() 495 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true; in PrepareSetVReg() 635 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight()); in GetNextMethodAndDexPc() 804 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack() 808 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); in WalkStack() 816 LOG(INFO) << "Tid=" << thread_-> GetThreadId() in WalkStack() [all …]
|
D | signal_catcher.h | 57 Thread* thread_ GUARDED_BY(lock_);
|
D | thread_pool.h | 92 Thread* GetThread() const { return thread_; } in GetThread() 103 Thread* thread_; variable
|
D | stack.h | 176 return thread_; in GetThread() 217 num_frames_ = ComputeNumFrames(thread_, walk_kind_); in GetNumFrames() 385 Thread* const thread_; variable
|
D | monitor_test.cc | 56 Thread* thread_; member in art::MonitorTest 76 monitor_test_->thread_ = self; // Pass the Thread. in Run() 193 monitor_test_->thread_->Interrupt(self); in Run()
|
D | thread_pool.cc | 140 worker->thread_ = Thread::Current(); in Callback() 142 worker->thread_->SetIsRuntimeThread(true); in Callback()
|
D | instrumentation.cc | 656 : StackVisitor(thread, nullptr, kInstrumentationStackWalk), thread_(thread) {} in InstrumentationRestoreStack() 671 Thread* const thread_; in InstrumentationRestoreStack() member 690 thread_(thread), in HasFramesNeedingForceDeopt() 707 Thread* const thread_; in HasFramesNeedingForceDeopt() member
|
D | class_linker.cc | 2894 #define RETURN_IF_UNRECOGNIZED_OR_FOUND_OR_EXCEPTION(call_, result_, thread_) \ argument 2904 auto local_thread = thread_; \
|
/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/gc/space/ |
D | region_space.h | 396 thread_(nullptr), in Region() 418 thread_ = nullptr; in Init() 625 Thread* thread_; // The owning thread if it's a tlab. variable
|
D | region_space.cc | 875 r->thread_ = self; in AllocNewTlab() 901 r->thread_ = nullptr; in RevokeThreadLocalBuffersLocked() 966 << " thread=" << thread_ << '\n'; in Dump() 1019 thread_ = nullptr; in Clear()
|
D | region_space-inl.h | 499 bytes = thread_->GetTlabEnd() - begin_; in BytesAllocated()
|
/art/runtime/jit/ |
D | profile_saver.cc | 318 explicit ScopedDefaultPriority(pthread_t thread) : thread_(thread) { in ScopedDefaultPriority() 319 SetProfileSaverThreadPriority(thread_, GetDefaultThreadPriority()); in ScopedDefaultPriority() 323 SetProfileSaverThreadPriority(thread_, kProfileSaverPthreadPriority); in ~ScopedDefaultPriority() 327 const pthread_t thread_; member in art::ProfileSaver::ScopedDefaultPriority
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 3173 : collector_(collector), thread_(thread) { in RefFieldsVisitor() 3201 collector_->MarkRoot</*kGrayImmuneObject=*/false>(thread_, root); in VisitRoot() 3206 Thread* const thread_; member in art::gc::collector::ConcurrentCopying::RefFieldsVisitor
|