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

  /external/perfetto/src/tracing/core/
trace_buffer.h 221 // Returns the next packet in the buffer, if any, and the producer_id,
292 ProducerID producer_id = 0; member in struct:perfetto::TraceBuffer::ChunkRecord
330 : producer_id{p}, writer_id{w}, chunk_id{c} {}
333 : Key(cr.producer_id, cr.writer_id, cr.chunk_id) {}
339 return std::tie(producer_id, writer_id, chunk_id) <
340 std::tie(other.producer_id, other.writer_id, other.chunk_id);
344 return std::tie(producer_id, writer_id, chunk_id) ==
345 std::tie(other.producer_id, other.writer_id, other.chunk_id);
353 ProducerID producer_id; member in struct:perfetto::TraceBuffer::ChunkMeta::Key
451 ProducerID producer_id() const function in struct:perfetto::TraceBuffer::SequenceIterator
    [all...]
tracing_service_impl.cc 201 if (it->second.producer_id == id)
483 if (GetProducer(it->second.producer_id)->name_ ==
608 ProducerEndpointImpl* producer = GetProducer(it->second.producer_id);
625 if (instance_it->first == it->second.producer_id &&
726 ProducerID producer_id = kv.first; local
728 ProducerEndpointImpl* producer = GetProducer(producer_id);
802 const ProducerID producer_id = data_source_inst.first; local
805 ProducerEndpointImpl* producer = GetProducer(producer_id);
846 ProducerID producer_id,
1073 const ProducerID producer_id = data_source_inst.first; local
1079 ProducerID producer_id = kv.first; local
1357 ProducerID producer_id = kv.first; local
1364 ProducerID producer_id = kv.first; local
    [all...]
tracing_service_impl.h 291 ProducerID producer_id; member in struct:perfetto::TracingServiceImpl::RegisteredDataSource
361 PacketSequenceID GetPacketSequenceID(ProducerID producer_id,
363 auto key = std::make_pair(producer_id, writer_id);
379 ProducerID producer_id,
382 if (inst_kv.first != producer_id ||
trace_buffer.cc 142 record.producer_id = producer_id_trusted;
366 key.producer_id, key.writer_id, key.chunk_id,
406 bool TraceBuffer::TryPatchChunkContents(ProducerID producer_id,
412 ChunkMeta::Key key(producer_id, writer_id, chunk_id);
437 producer_id, writer_id, chunk_id, chunk_end - chunk_begin,
493 std::tie(prev_it->first.producer_id, prev_it->first.writer_id) <
494 std::tie(seq_begin->first.producer_id, seq_begin->first.writer_id));
508 auto producer_and_writer_id = std::make_pair(key.producer_id, key.writer_id);
593 const ProducerID trusted_producer_id = read_iter_.producer_id();
735 PERFETTO_DCHECK(it.producer_id() == read_iter_.producer_id() &
    [all...]
tracing_service_impl_unittest.cc 112 uid_t GetProducerUid(ProducerID producer_id) {
113 return svc->GetProducer(producer_id)->uid_;
130 const std::set<BufferID>& GetAllowedTargetBuffers(ProducerID producer_id) {
131 return svc->GetProducer(producer_id)->allowed_target_buffers_;
134 const std::map<WriterID, BufferID>& GetWriters(ProducerID producer_id) {
135 return svc->GetProducer(producer_id)->writers_;
139 ProducerID producer_id) {
140 return std::move(svc->GetProducer(producer_id)->inproc_shmem_arbiter_);
158 void WaitForTraceWritersChanged(ProducerID producer_id) {
160 auto checkpoint_name = "writers_changed_" + std::to_string(producer_id)
2223 ProducerID producer_id = *last_producer_id(); local
2295 ProducerID producer_id = *last_producer_id(); local
2358 ProducerID producer_id = *last_producer_id(); local
2448 ProducerID producer_id = *last_producer_id(); local
2502 ProducerID producer_id = *last_producer_id(); local
2566 ProducerID producer_id = *last_producer_id(); local
    [all...]
trace_buffer_unittest.cc 113 actual_seq << "{" << it.producer_id() << "," << it.writer_id() << ","
    [all...]
  /external/perfetto/src/tracing/test/
fake_packet.h 80 ProducerID producer_id; member in class:perfetto::FakeChunk
fake_packet.cc 107 : trace_buffer_{t}, producer_id{p}, writer_id{w}, chunk_id{c} {}
156 trace_buffer_->CopyChunkUntrusted(producer_id, uid, writer_id, chunk_id,
tracing_integration_test.cc 185 void WaitForTraceWritersChanged(ProducerID producer_id) {
187 auto checkpoint_name = "writers_changed_" + std::to_string(producer_id) +
190 auto writers = GetWriters(producer_id);
192 task = [&task, writers, writers_changed, producer_id, this]() {
193 if (writers != GetWriters(producer_id)) {
203 const std::map<WriterID, BufferID>& GetWriters(ProducerID producer_id) {
205 ->GetProducer(producer_id)

Completed in 107 milliseconds