• Home
  • Raw
  • Download

Lines Matching refs:the_trace_

74 Trace* volatile Trace::the_trace_ = nullptr;  member in art::Trace
400 the_trace = the_trace_; in RunSamplingThread()
401 if (the_trace_->stop_tracing_) { in RunSamplingThread()
490 if (the_trace_ != nullptr) { in Start()
525 if (the_trace_ != nullptr) { in Start()
529 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode); in Start()
534 the_trace_->interval_us_ = interval_us; in Start()
548 the_trace_, in Start()
558 the_trace_, in Start()
599 if (the_trace_ == nullptr) { in StopTracing()
604 the_trace_->stop_tracing_ = true; in StopTracing()
617 Trace* the_trace = the_trace_; in StopTracing()
646 the_trace_->FlushStreamingBuffer(thread); in StopTracing()
657 the_trace_ = nullptr; in StopTracing()
690 the_trace_->FlushStreamingBuffer(self); in FlushThreadBuffer()
711 if (the_trace_ == nullptr) { in GetMethodTracingMode()
714 switch (the_trace_->trace_mode_) { in GetMethodTracingMode()
1288 if (the_trace_ != nullptr) { in StoreExitingThreadInfo()
1289 the_trace_->UpdateThreadsList(thread); in StoreExitingThreadInfo()
1295 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running"; in GetOutputMode()
1296 return the_trace_->trace_output_mode_; in GetOutputMode()
1301 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; in GetMode()
1302 return the_trace_->trace_mode_; in GetMode()
1307 CHECK(the_trace_ != nullptr) << "Trace flags requested, but no trace currently running"; in GetFlags()
1308 return the_trace_->flags_; in GetFlags()
1313 CHECK(the_trace_ != nullptr) << "Trace interval requested, but no trace currently running"; in GetIntervalInMillis()
1314 return the_trace_->interval_us_; in GetIntervalInMillis()
1319 CHECK(the_trace_ != nullptr) << "Trace buffer size requested, but no trace currently running"; in GetBufferSize()
1320 return the_trace_->buffer_size_; in GetBufferSize()
1325 return the_trace_ != nullptr; in IsTracingEnabled()