Lines Matching refs:the_trace_

89 Trace* volatile Trace::the_trace_ = nullptr;  member in art::Trace
292 the_trace = the_trace_; in RunSamplingThread()
313 if (the_trace_ != nullptr) { in Start()
357 if (the_trace_ != nullptr) { in Start()
361 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode, in Start()
367 the_trace_->interval_us_ = interval_us; in Start()
369 runtime->GetInstrumentation()->AddListener(the_trace_, in Start()
393 if (the_trace_ == nullptr) { in StopTracing()
396 the_trace = the_trace_; in StopTracing()
397 the_trace_ = nullptr; in StopTracing()
477 if (the_trace_ == nullptr) { in Pause()
481 the_trace = the_trace_; in Pause()
489 the_trace_ = nullptr; in Pause()
495 the_trace_ = the_trace; in Pause()
530 if (the_trace_ == nullptr) { in Resume()
534 the_trace = the_trace_; in Resume()
570 if (the_trace_ == nullptr) { in GetMethodTracingMode()
573 switch (the_trace_->trace_mode_) { in GetMethodTracingMode()
1040 if (the_trace_ != nullptr) { in StoreExitingThreadInfo()
1045 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name); in StoreExitingThreadInfo()
1051 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running"; in GetOutputMode()
1052 return the_trace_->trace_output_mode_; in GetOutputMode()
1057 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; in GetMode()
1058 return the_trace_->trace_mode_; in GetMode()
1063 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; in GetBufferSize()
1064 return the_trace_->buffer_size_; in GetBufferSize()
1069 return the_trace_ != nullptr; in IsTracingEnabled()