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

  /external/perfetto/src/profiling/memory/
interner.h 105 auto it_and_inserted = entries_.emplace(std::move(item)); local
107 it = it_and_inserted.first;
108 PERFETTO_DCHECK(it_and_inserted.second);
  /external/perfetto/src/ipc/
client_impl_unittest.cc 92 auto it_and_inserted = local
94 EXPECT_TRUE(it_and_inserted.second);
95 FakeMethod* method = it_and_inserted.first->second.get();
113 auto it_and_inserted = local
115 EXPECT_TRUE(it_and_inserted.second);
116 FakeService* svc = it_and_inserted.first->second.get();
  /external/perfetto/src/perfetto_cmd/
pbtxt_to_pb.cc 415 auto it_and_inserted = ctx_.top().seen_fields.emplace(field_name); local
416 if (!it_and_inserted.second && !is_repeated) {
  /external/perfetto/src/traced/probes/ftrace/
ftrace_controller.cc 407 auto it_and_inserted = data_sources_.insert(data_source); local
408 PERFETTO_DCHECK(it_and_inserted.second);
proto_translation_table.cc 517 auto it_and_inserted = interned_strings_.insert(str); local
518 return it_and_inserted.first->c_str();
  /external/perfetto/src/tracing/core/
tracing_service_impl.cc 179 auto it_and_inserted = producers_.emplace(id, endpoint.get()); local
180 PERFETTO_DCHECK(it_and_inserted.second);
225 auto it_and_inserted = consumers_.emplace(endpoint.get()); local
226 PERFETTO_DCHECK(it_and_inserted.second);
448 auto it_and_inserted = buffers_.emplace( local
450 PERFETTO_DCHECK(it_and_inserted.second); // buffers_.count(global_id) == 0.
451 std::unique_ptr<TraceBuffer>& trace_buffer = it_and_inserted.first->second;
    [all...]
trace_buffer.cc 271 auto it_and_inserted = index_.emplace( local
274 PERFETTO_DCHECK(it_and_inserted.second);
    [all...]

Completed in 196 milliseconds