/external/perfetto/src/traced/probes/ftrace/ |
D | ftrace_controller_unittest.cc | 332 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 363 ASSERT_TRUE(controller->StartDataSource(data_sourceA.get())); in TEST() 364 ASSERT_TRUE(controller->StartDataSource(data_sourceB.get())); in TEST() 390 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 419 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 434 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 461 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 471 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 482 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() 492 ASSERT_TRUE(controller->StartDataSource(data_source.get())); in TEST() [all …]
|
D | ftrace_data_source.cc | 58 if (!ftrace->StartDataSource(this)) in Start()
|
D | ftrace_controller.h | 74 bool StartDataSource(FtraceDataSource*);
|
D | ftrace_controller.cc | 413 bool FtraceController::StartDataSource(FtraceDataSource* data_source) { in StartDataSource() function in perfetto::FtraceController
|
/external/perfetto/protos/perfetto/ipc/ |
D | producer_port.proto | 65 // Sent by the client in response to a StartDataSource message, when a data 200 // Called after SetupTracing and before StartDataSource. 207 message StartDataSource { message 222 // The instance id (i.e. StartDataSource.new_instance_id) of the data 238 // The instance id (i.e. StartDataSource.new_instance_id) of the data 247 StartDataSource start_data_source = 1;
|
/external/perfetto/src/tracing/test/ |
D | tracing_integration_test.cc | 64 MOCK_METHOD2(StartDataSource, 251 EXPECT_CALL(producer_, StartDataSource(_, _)) in TEST_F() 382 EXPECT_CALL(producer_, StartDataSource(_, _)) in TEST_F() 471 EXPECT_CALL(producer_, StartDataSource(_, _)) in TEST_F()
|
D | mock_producer.h | 82 MOCK_METHOD2(StartDataSource,
|
D | mock_producer.cc | 118 StartDataSource(_, Property(&DataSourceConfig::name, Eq(name)))) in WaitForDataSourceStart()
|
/external/perfetto/include/perfetto/tracing/core/ |
D | producer.h | 91 virtual void StartDataSource(DataSourceInstanceID,
|
/external/perfetto/src/perfetto_cmd/ |
D | trigger_producer.h | 50 void StartDataSource(DataSourceInstanceID, const DataSourceConfig&) override;
|
D | trigger_producer.cc | 77 void TriggerProducer::StartDataSource(DataSourceInstanceID, in StartDataSource() function in perfetto::TriggerProducer
|
/external/perfetto/test/ |
D | fake_producer.h | 52 void StartDataSource(DataSourceInstanceID,
|
D | fake_producer.cc | 67 void FakeProducer::StartDataSource(DataSourceInstanceID, in StartDataSource() function in perfetto::FakeProducer
|
D | end_to_end_shared_memory_fuzzer.cc | 82 void StartDataSource(DataSourceInstanceID, in StartDataSource() function in perfetto::shm_fuzz::FakeProducer
|
/external/perfetto/src/traced/service/ |
D | lazy_producer.h | 43 void StartDataSource(DataSourceInstanceID, const DataSourceConfig&) override { in StartDataSource() function
|
/external/perfetto/src/tracing/ipc/service/ |
D | producer_ipc_service.h | 87 void StartDataSource(DataSourceInstanceID,
|
D | producer_ipc_service.cc | 348 void ProducerIPCService::RemoteProducer::StartDataSource( in StartDataSource() function in perfetto::ProducerIPCService::RemoteProducer
|
/external/perfetto/src/traced/probes/ |
D | probes_producer.h | 51 void StartDataSource(DataSourceInstanceID, const DataSourceConfig&) override;
|
D | probes_producer.cc | 197 void ProbesProducer::StartDataSource(DataSourceInstanceID instance_id, in StartDataSource() function in perfetto::ProbesProducer
|
/external/perfetto/src/profiling/memory/ |
D | heapprofd_producer.h | 112 void StartDataSource(DataSourceInstanceID, const DataSourceConfig&) override;
|
/external/perfetto/src/tracing/ipc/producer/ |
D | producer_ipc_client_impl.cc | 154 producer_->StartDataSource(dsid, cfg); in OnServiceRequest()
|
/external/perfetto/src/tracing/core/ |
D | tracing_service_impl_unittest.cc | 297 EXPECT_CALL(*producer, StartDataSource(_, _)).Times(0); in TEST_F() 352 EXPECT_CALL(*producer, StartDataSource(_, _)).Times(0); in TEST_F() 395 EXPECT_CALL(*producer, StartDataSource(_, _)).Times(0); in TEST_F() 488 EXPECT_CALL(*producer, StartDataSource(_, _)).Times(0); in TEST_F() 942 EXPECT_CALL(*producer, StartDataSource(_, _)).Times(0); in TEST_F() 1219 EXPECT_CALL(*producer3, StartDataSource(_, _)).Times(1); in TEST_F()
|
D | tracing_service_impl.h | 102 void StartDataSource(DataSourceInstanceID, const DataSourceConfig&);
|
D | tracing_service_impl.cc | 752 producer->StartDataSource(instance->instance_id, instance->config); in StartDataSourceInstance() 2705 void TracingServiceImpl::ProducerEndpointImpl::StartDataSource( in StartDataSource() function in perfetto::TracingServiceImpl::ProducerEndpointImpl 2712 weak_this->producer_->StartDataSource(ds_id, std::move(config)); in StartDataSource()
|
/external/perfetto/docs/ |
D | life-of-a-tracing-session.md | 26 [`StartDataSource`](/protos/perfetto/ipc/producer_port.proto#105) IPC message
|