HomeSort by relevance Sort by last modified time
    Searched refs:write_into_file (Results 1 - 10 of 10) sorted by null

  /external/perfetto/src/tracing/test/
mock_consumer.cc 52 base::ScopedFile write_into_file) {
53 service_endpoint_->EnableTracing(trace_config, std::move(write_into_file));
  /external/perfetto/src/perfetto_cmd/
perfetto_cmd.cc 503 } else if (is_detach() && !trace_config_->write_into_file()) {
508 "TraceConfig's write_into_file must be true when using --detach");
514 if (!trace_config_->write_into_file())
609 if (trace_config_->write_into_file())
649 if (trace_config_->write_into_file()) {
650 // If write_into_file == true, at this point the passed file contains
672 if (trace_config_->write_into_file()) {
852 PERFETTO_DCHECK(trace_config_->write_into_file());
config_unittest.cc 38 EXPECT_FALSE(config.write_into_file());
pbtxt_to_pb_unittest.cc 143 write_into_file: false; deferred_start: true;
145 EXPECT_EQ(config.write_into_file(), false);
151 write_into_file: false # deferred_start: true;
169 EXPECT_EQ(config.write_into_file(), false);
389 "write_into_file in proto TraceConfig instead "
392 write_into_file: foo;
401 write_into_file:
420 "Saw non-repeating field 'write_into_file' more than once"));
422 write_into_file: true;
423 write_into_file: true
    [all...]
  /external/perfetto/protos/perfetto/config/
trace_config.proto 143 optional bool write_into_file = 8;
  /external/perfetto/src/tracing/core/
trace_config.cc 108 static_assert(sizeof(write_into_file_) == sizeof(proto.write_into_file()),
111 static_cast<decltype(write_into_file_)>(proto.write_into_file());
221 static_assert(sizeof(write_into_file_) == sizeof(proto->write_into_file()),
224 static_cast<decltype(proto->write_into_file())>(write_into_file_));
    [all...]
tracing_service_impl.cc 406 if (cfg.write_into_file()) {
409 "The TraceConfig had write_into_file==true but no fd was passed");
413 tracing_session->write_into_file = std::move(fd);
705 if (tracing_session->config.write_into_file()) {
    [all...]
tracing_service_impl.h 470 // This is set when the Consumer calls sets |write_into_file| == true in the
474 base::ScopedFile write_into_file;
  /external/perfetto/src/tracing/ipc/service/
consumer_ipc_service.cc 73 if (trace_config.write_into_file())
  /external/perfetto/include/perfetto/tracing/core/
trace_config.h 549 bool write_into_file() const { return write_into_file_; } function in class:perfetto::TraceConfig

Completed in 73 milliseconds