/external/perfetto/test/ |
fake_producer.cc | 129 void FakeProducer::Flush(FlushRequestID flush_request_id, 135 endpoint_->NotifyFlushComplete(flush_request_id);
|
/external/perfetto/src/tracing/core/ |
commit_data_request.cc | 56 static_assert(sizeof(flush_request_id_) == sizeof(proto.flush_request_id()), 59 static_cast<decltype(flush_request_id_)>(proto.flush_request_id()); 77 static_assert(sizeof(flush_request_id_) == sizeof(proto->flush_request_id()), 80 static_cast<decltype(proto->flush_request_id())>(flush_request_id_));
|
service_impl.cc | 411 FlushRequestID flush_request_id = ++last_flush_request_id_; local 415 flush_request_id, PendingFlush(std::move(callback))) 432 producer->Flush(flush_request_id, data_sources); 438 [weak_this, tsid, flush_request_id] { 440 weak_this->OnFlushTimeout(tsid, flush_request_id); 446 FlushRequestID flush_request_id) { 448 // Remove all pending flushes <= |flush_request_id| for |producer_id|. 450 auto end_it = pending_flushes.upper_bound(flush_request_id); 466 FlushRequestID flush_request_id) { 470 auto it = tracing_session->pending_flushes.find(flush_request_id); [all...] |
shared_memory_arbiter_impl.cc | 261 req_id = std::max(req_id, commit_data_req_->flush_request_id());
|
/external/perfetto/protos/perfetto/common/ |
commit_data_request.proto | 77 optional uint64 flush_request_id = 3;
|
/external/perfetto/src/tracing/ipc/service/ |
producer_ipc_service.cc | 245 FlushRequestID flush_request_id, 258 cmd->mutable_flush()->set_request_id(flush_request_id);
|
/external/perfetto/src/traced/probes/ |
probes_producer.cc | 254 void ProbesProducer::Flush(FlushRequestID flush_request_id, 275 endpoint_->NotifyFlushComplete(flush_request_id);
|
/external/perfetto/include/perfetto/tracing/core/ |
commit_data_request.h | 194 uint64_t flush_request_id() const { return flush_request_id_; } function in class:perfetto::CommitDataRequest
|