Home
last modified time | relevance | path

Searched refs:GetProducer (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/tracing/core/
Dtracing_service_impl.cc193 if (auto* producer = GetProducer(id)) { in DisconnectProducer()
210 TracingServiceImpl::ProducerEndpointImpl* TracingServiceImpl::GetProducer( in GetProducer() function in perfetto::TracingServiceImpl
483 if (GetProducer(it->second.producer_id)->name_ == in EnableTracing()
608 ProducerEndpointImpl* producer = GetProducer(it->second.producer_id); in ChangeTraceConfig()
728 ProducerEndpointImpl* producer = GetProducer(producer_id); in StartTracing()
805 ProducerEndpointImpl* producer = GetProducer(producer_id); in DisableTracing()
864 ProducerEndpointImpl* producer = GetProducer(producer_id); in NotifyDataSourceStarted()
894 ProducerEndpointImpl* producer = GetProducer(producer_id); in NotifyDataSourceStopped()
913 auto* producer = GetProducer(producer_id); in ActivateTriggers()
1019 ProducerEndpointImpl* producer = GetProducer(inst_kv.first); in DisableTracingNotifyConsumerAndFlushFile()
[all …]
Dtracing_service_impl_unittest.cc113 return svc->GetProducer(producer_id)->uid_; in GetProducerUid()
131 return svc->GetProducer(producer_id)->allowed_target_buffers_; in GetAllowedTargetBuffers()
135 return svc->GetProducer(producer_id)->writers_; in GetWriters()
140 return std::move(svc->GetProducer(producer_id)->inproc_shmem_arbiter_); in TakeShmemArbiterForProducer()
224 ASSERT_EQ(mock_producer_1->endpoint(), svc->GetProducer(1)); in TEST_F()
225 ASSERT_EQ(mock_producer_2->endpoint(), svc->GetProducer(2)); in TEST_F()
237 ASSERT_EQ(nullptr, svc->GetProducer(1)); in TEST_F()
240 ASSERT_EQ(nullptr, svc->GetProducer(2)); in TEST_F()
Dtracing_service_impl.h282 ProducerEndpointImpl* GetProducer(ProducerID) const;
/external/perfetto/src/tracing/test/
Dtracing_integration_test.cc205 ->GetProducer(producer_id) in GetWriters()