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

  /external/perfetto/src/tracing/test/
fake_producer_endpoint.h 28 void UnregisterDataSource(const std::string&) override {}
mock_producer.h 54 void UnregisterDataSource(const std::string& name);
mock_producer.cc 72 void MockProducer::UnregisterDataSource(const std::string& name) {
73 service_endpoint_->UnregisterDataSource(name);
  /external/perfetto/include/perfetto/tracing/core/
tracing_service.h 61 virtual void UnregisterDataSource(const std::string& name) = 0;
  /external/perfetto/src/profiling/memory/
heapprofd_producer_unittest.cc 38 MOCK_METHOD1(UnregisterDataSource, void(const std::string&));
  /external/perfetto/src/tracing/ipc/producer/
producer_ipc_client_impl.h 66 void UnregisterDataSource(const std::string& name) override;
producer_ipc_client_impl.cc 229 void ProducerIPCClientImpl::UnregisterDataSource(const std::string& name) {
233 "Cannot UnregisterDataSource(), not connected to tracing service");
238 producer_port_.UnregisterDataSource(
  /external/perfetto/src/tracing/ipc/service/
producer_ipc_service.h 50 void UnregisterDataSource(const protos::UnregisterDataSourceRequest&,
producer_ipc_service.cc 131 // RegisterDataSource, UnregisterDataSource, OnDataSourceRegistered.
133 // ReqisterDataSource and UnregisterDataSource speculating on the next id.
135 void ProducerIPCService::UnregisterDataSource(
141 "Producer invoked UnregisterDataSource() before "
147 producer->service_endpoint->UnregisterDataSource(req.data_source_name());
149 // UnregisterDataSource doesn't expect any meaningful response.
  /external/perfetto/protos/perfetto/ipc/
producer_port.proto 38 rpc UnregisterDataSource(UnregisterDataSourceRequest)
131 // Arguments for rpc UnregisterDataSource().
  /external/perfetto/src/tracing/core/
shared_memory_arbiter_impl_unittest.cc 40 void UnregisterDataSource(const std::string&) override {}
tracing_service_impl.h 85 void UnregisterDataSource(const std::string& name) override;
224 void UnregisterDataSource(ProducerID, const std::string& name);
tracing_service_impl.cc 202 UnregisterDataSource(id, it->second.descriptor.name());
    [all...]
tracing_service_impl_unittest.cc 232 mock_producer_1->UnregisterDataSource("foo");
233 mock_producer_2->UnregisterDataSource("bar");
    [all...]

Completed in 495 milliseconds