Lines Matching full:threaddata
38 // When ThreadData is first initialized, should we start in an ACTIVE state to
44 const ThreadData::Status kInitialStartupState = ThreadData::PROFILING_ACTIVE;
61 // ThreadData::EnableProfilerTiming, say, based on a field trial.
247 // ThreadData::SnapshotExecutedTasks doesn't send deltas with 0 count.
342 const ThreadData& current)
359 Births::Births(const Location& location, const ThreadData& current)
368 // ThreadData maintains the central data for all births and deaths on a single
376 ThreadData::NowFunction* ThreadData::now_function_for_testing_ = NULL;
378 // A TLS slot which points to the ThreadData instance for the current thread.
382 base::ThreadLocalStorage::StaticSlot ThreadData::tls_index_ = TLS_INITIALIZER;
385 int ThreadData::cleanup_count_ = 0;
388 int ThreadData::incarnation_counter_ = 0;
391 ThreadData* ThreadData::all_thread_data_list_head_ = NULL;
394 ThreadData* ThreadData::first_retired_thread_data_ = NULL;
398 ThreadData
401 base::subtle::Atomic32 ThreadData::status_ = ThreadData::UNINITIALIZED;
403 ThreadData::ThreadData(const std::string& sanitized_thread_name)
414 ThreadData::~ThreadData() {
417 void ThreadData::PushToHeadOfList() {
422 random_number_ += static_cast<uint32_t>(this - static_cast<ThreadData*>(0));
433 ThreadData* ThreadData::first() {
438 ThreadData* ThreadData::next() const { return next_; }
441 void ThreadData::InitializeThreadContext(const std::string& thread_name) {
446 ThreadData* current_thread_data =
447 reinterpret_cast<ThreadData*>(tls_index_.Get());
456 ThreadData* ThreadData::Get() {
459 ThreadData* registered = reinterpret_cast<ThreadData*>(tls_index_.Get());
464 ThreadData* worker_thread_data =
471 void ThreadData::OnThreadTermination(void* thread_data) {
475 reinterpret_cast<ThreadData*>(thread_data)->OnThreadTerminationCleanup();
478 void ThreadData::OnThreadTerminationCleanup() {
486 return; // ThreadData was constructed in an earlier unit test.
489 // Add this ThreadData to a retired list so that it can be reused by a thread
491 // |next_retired_thread_data_| is expected to be nullptr for a ThreadData
499 void ThreadData::Snapshot(int current_profiling_phase,
501 // Get an unchanging copy of a ThreadData list.
502 ThreadData* my_list = ThreadData::first();
511 for (ThreadData* thread_data = my_list; thread_data;
535 void ThreadData::OnProfilingPhaseCompleted(int profiling_phase) {
536 // Get an unchanging copy of a ThreadData list.
537 ThreadData* my_list = ThreadData::first();
544 for (ThreadData* thread_data = my_list; thread_data;
550 Births* ThreadData::TallyABirth(const Location& location) {
567 void ThreadData::TallyADeath(const Births& births,
605 Births* ThreadData::TallyABirthIfActive(const Location& location) {
608 ThreadData* current_thread_data = Get();
615 void ThreadData::TallyRunOnNamedThreadIfTracking(
624 ThreadData* current_thread_data = stopwatch.GetThreadData();
643 void ThreadData::TallyRunOnWorkerThreadIfTracking(
654 // one ThreadData instance that uses locks to protect *all* access. This will
662 ThreadData* current_thread_data = stopwatch.GetThreadData();
675 void ThreadData::TallyRunInAScopedRegionIfTracking(
684 ThreadData* current_thread_data = stopwatch.GetThreadData();
692 void ThreadData::SnapshotExecutedTasks(
729 void ThreadData::SnapshotMaps(int profiling_phase,
745 void ThreadData::OnProfilingPhaseCompletedOnThread(int profiling_phase) {
753 void ThreadData::EnsureTlsInitialization() {
770 tls_index_.Initialize(&ThreadData::OnThreadTermination);
789 void ThreadData::InitializeAndSetTrackingStatus(Status status) {
802 ThreadData::Status ThreadData::status() {
803 return static_cast<ThreadData::Status>(base::subtle::Acquire_Load(&status_));
807 bool ThreadData::TrackingStatus() {
812 void ThreadData::EnableProfilerTiming() {
817 TrackedTime ThreadData::Now() {
826 void ThreadData::EnsureCleanupWasCalled(int major_threads_shutdown_count) {
839 void ThreadData::ShutdownSingleThreadedCleanup(bool leak) {
845 ThreadData* thread_data_list;
853 ThreadData* thread_data = first_retired_thread_data_;
869 ThreadData* thread_data = thread_data_list;
879 // Do actual recursive delete in all ThreadData instances.
881 ThreadData* next_thread_data = thread_data_list;
892 ThreadData* ThreadData::GetRetiredOrCreateThreadData(
898 ThreadData** pcursor = &first_retired_thread_data_;
899 ThreadData* cursor = first_retired_thread_data_;
901 // Assuming that there aren't more than a few tens of retired ThreadData
903 // time. Retired ThreadData instances cannot be stored in a map because
907 // Note: Test processes may have more than a few tens of retired ThreadData
921 return new ThreadData(sanitized_thread_name);
953 start_time_ = ThreadData::Now();
959 current_thread_data_ = ThreadData::Get();
975 const TrackedTime end_time = ThreadData::Now();
1023 ThreadData* TaskStopwatch::GetThreadData() const {