HomeSort by relevance Sort by last modified time
    Searched full:it_and_inserted (Results 1 - 5 of 5) sorted by null

  /external/perfetto/src/traced/probes/
probes_producer.cc 228 auto it_and_inserted = process_stats_sources_.emplace(id, std::move(source)); local
229 if (!it_and_inserted.second) {
233 ProcessStatsDataSource* ps_data_source = it_and_inserted.first->second.get();
  /external/perfetto/src/ipc/
client_impl_unittest.cc 91 auto it_and_inserted = local
93 EXPECT_TRUE(it_and_inserted.second);
94 FakeMethod* method = it_and_inserted.first->second.get();
112 auto it_and_inserted = local
114 EXPECT_TRUE(it_and_inserted.second);
115 FakeService* svc = it_and_inserted.first->second.get();
  /external/perfetto/src/tracing/core/
service_impl.cc 117 auto it_and_inserted = producers_.emplace(id, endpoint.get()); local
118 PERFETTO_DCHECK(it_and_inserted.second);
157 auto it_and_inserted = consumers_.emplace(endpoint.get()); local
158 PERFETTO_DCHECK(it_and_inserted.second);
278 auto it_and_inserted = local
280 PERFETTO_DCHECK(it_and_inserted.second); // buffers_.count(global_id) == 0.
281 std::unique_ptr<TraceBuffer>& trace_buffer = it_and_inserted.first->second;
    [all...]
trace_buffer.cc 173 auto it_and_inserted = local
176 if (PERFETTO_UNLIKELY(!it_and_inserted.second)) {
180 index_.erase(it_and_inserted.first);
  /external/perfetto/src/ftrace_reader/
ftrace_controller.cc 329 auto it_and_inserted = sinks_.insert(sink); local
330 PERFETTO_DCHECK(it_and_inserted.second);

Completed in 156 milliseconds