Lines Matching refs:the_trace_
97 Trace* volatile Trace::the_trace_ = nullptr; member in art::Trace
300 the_trace = the_trace_; in RunSamplingThread()
327 if (the_trace_ != nullptr) { in Start()
371 if (the_trace_ != nullptr) { in Start()
375 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode, in Start()
381 the_trace_->interval_us_ = interval_us; in Start()
383 runtime->GetInstrumentation()->AddListener(the_trace_, in Start()
407 if (the_trace_ == nullptr) { in StopTracing()
410 the_trace = the_trace_; in StopTracing()
411 the_trace_ = nullptr; in StopTracing()
489 if (the_trace_ == nullptr) { in Pause()
493 the_trace = the_trace_; in Pause()
501 the_trace_ = nullptr; in Pause()
507 the_trace_ = the_trace; in Pause()
542 if (the_trace_ == nullptr) { in Resume()
546 the_trace = the_trace_; in Resume()
582 if (the_trace_ == nullptr) { in GetMethodTracingMode()
585 switch (the_trace_->trace_mode_) { in GetMethodTracingMode()
1056 if (the_trace_ != nullptr) { in StoreExitingThreadInfo()
1061 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name); in StoreExitingThreadInfo()
1067 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running"; in GetOutputMode()
1068 return the_trace_->trace_output_mode_; in GetOutputMode()
1073 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; in GetMode()
1074 return the_trace_->trace_mode_; in GetMode()
1079 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; in GetBufferSize()
1080 return the_trace_->buffer_size_; in GetBufferSize()
1085 return the_trace_ != nullptr; in IsTracingEnabled()