Home
last modified time | relevance | path

Searched refs:trace_file_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dtrace.cc426 if (the_trace->trace_file_.get() != nullptr) { in StopTracing()
429 if (the_trace->trace_file_->Flush() != 0) { in StopTracing()
433 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard. in StopTracing()
435 if (the_trace->trace_file_->Close() != 0) { in StopTracing()
577 : trace_file_(trace_file), in Trace()
720 if (trace_file_.get() == nullptr) { in FinishTracing()
733 if (!trace_file_->WriteFully(header.c_str(), header.length()) || in FinishTracing()
734 !trace_file_->WriteFully(buf_.get(), final_offset)) { in FinishTracing()
867 if (!trace_file_->WriteFully(buf_.get(), old_offset)) { in WriteToBuf()
873 if (!trace_file_->WriteFully(src, src_size)) { in WriteToBuf()
Dtrace.h245 std::unique_ptr<File> trace_file_; variable