Home
last modified time | relevance | path

Searched refs:it_and_inserted (Results 1 – 7 of 7) sorted by relevance

/external/perfetto/src/profiling/memory/
Dinterner.h105 auto it_and_inserted = entries_.emplace(std::move(item)); in Intern() local
107 it = it_and_inserted.first; in Intern()
108 PERFETTO_DCHECK(it_and_inserted.second); in Intern()
/external/perfetto/src/ipc/
Dclient_impl_unittest.cc92 auto it_and_inserted = in AddFakeMethod() local
94 EXPECT_TRUE(it_and_inserted.second); in AddFakeMethod()
95 FakeMethod* method = it_and_inserted.first->second.get(); in AddFakeMethod()
113 auto it_and_inserted = in AddFakeService() local
115 EXPECT_TRUE(it_and_inserted.second); in AddFakeService()
116 FakeService* svc = it_and_inserted.first->second.get(); in AddFakeService()
/external/perfetto/src/traced/probes/ftrace/
Dftrace_controller.cc407 auto it_and_inserted = data_sources_.insert(data_source); in AddDataSource() local
408 PERFETTO_DCHECK(it_and_inserted.second); in AddDataSource()
Dproto_translation_table.cc517 auto it_and_inserted = interned_strings_.insert(str); in InternString() local
518 return it_and_inserted.first->c_str(); in InternString()
/external/perfetto/src/tracing/core/
Dtracing_service_impl.cc179 auto it_and_inserted = producers_.emplace(id, endpoint.get()); in ConnectProducer() local
180 PERFETTO_DCHECK(it_and_inserted.second); in ConnectProducer()
225 auto it_and_inserted = consumers_.emplace(endpoint.get()); in ConnectConsumer() local
226 PERFETTO_DCHECK(it_and_inserted.second); in ConnectConsumer()
448 auto it_and_inserted = buffers_.emplace( in EnableTracing() local
450 PERFETTO_DCHECK(it_and_inserted.second); // buffers_.count(global_id) == 0. in EnableTracing()
451 std::unique_ptr<TraceBuffer>& trace_buffer = it_and_inserted.first->second; in EnableTracing()
Dtrace_buffer.cc271 auto it_and_inserted = index_.emplace( in CopyChunkUntrusted() local
274 PERFETTO_DCHECK(it_and_inserted.second); in CopyChunkUntrusted()
/external/perfetto/src/perfetto_cmd/
Dpbtxt_to_pb.cc415 auto it_and_inserted = ctx_.top().seen_fields.emplace(field_name); in FindFieldByName() local
416 if (!it_and_inserted.second && !is_repeated) { in FindFieldByName()