Searched refs:it_and_inserted (Results 1 – 7 of 7) sorted by relevance
105 auto it_and_inserted = entries_.emplace(std::move(item)); in Intern() local107 it = it_and_inserted.first; in Intern()108 PERFETTO_DCHECK(it_and_inserted.second); in Intern()
92 auto it_and_inserted = in AddFakeMethod() local94 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() local115 EXPECT_TRUE(it_and_inserted.second); in AddFakeService()116 FakeService* svc = it_and_inserted.first->second.get(); in AddFakeService()
407 auto it_and_inserted = data_sources_.insert(data_source); in AddDataSource() local408 PERFETTO_DCHECK(it_and_inserted.second); in AddDataSource()
517 auto it_and_inserted = interned_strings_.insert(str); in InternString() local518 return it_and_inserted.first->c_str(); in InternString()
179 auto it_and_inserted = producers_.emplace(id, endpoint.get()); in ConnectProducer() local180 PERFETTO_DCHECK(it_and_inserted.second); in ConnectProducer()225 auto it_and_inserted = consumers_.emplace(endpoint.get()); in ConnectConsumer() local226 PERFETTO_DCHECK(it_and_inserted.second); in ConnectConsumer()448 auto it_and_inserted = buffers_.emplace( in EnableTracing() local450 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()
271 auto it_and_inserted = index_.emplace( in CopyChunkUntrusted() local274 PERFETTO_DCHECK(it_and_inserted.second); in CopyChunkUntrusted()
415 auto it_and_inserted = ctx_.top().seen_fields.emplace(field_name); in FindFieldByName() local416 if (!it_and_inserted.second && !is_repeated) { in FindFieldByName()