Home
last modified time | relevance | path

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

/external/perfetto/src/perfetto_cmd/
Dperfetto_cmd.cc312 trace_out_path_ = optarg; in Main()
584 if (!trace_out_path_.empty() && upload_flag) { in Main()
592 if (!trace_out_path_.empty() || upload_flag) { in Main()
622 if (!trace_out_path_.empty() || upload_flag) { in Main()
630 } else if (trace_out_path_.empty() && !upload_flag) { in Main()
916 trace_out_path_ == "-" ? "stdout" : trace_out_path_.c_str()); in FinalizeTraceAndExit()
926 if (trace_out_path_.empty()) { in OpenOutputFile()
930 } else if (trace_out_path_ == "-") { in OpenOutputFile()
933 fd = base::OpenFile(trace_out_path_, O_RDWR | O_CREAT | O_TRUNC, 0600); in OpenOutputFile()
940 trace_out_path_.c_str()); in OpenOutputFile()
Dperfetto_cmd.h96 std::string trace_out_path_; variable