Home
last modified time | relevance | path

Searched refs:write_wrap_count_ (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/tracing/core/
Dtrace_stats.cc189 (write_wrap_count_ == other.write_wrap_count_) && in operator ==()
261 static_assert(sizeof(write_wrap_count_) == sizeof(proto.write_wrap_count()), in FromProto()
263 write_wrap_count_ = in FromProto()
264 static_cast<decltype(write_wrap_count_)>(proto.write_wrap_count()); in FromProto()
366 static_assert(sizeof(write_wrap_count_) == sizeof(proto->write_wrap_count()), in ToProto()
369 static_cast<decltype(proto->write_wrap_count())>(write_wrap_count_)); in ToProto()
/external/perfetto/include/perfetto/tracing/core/
Dtrace_stats.h111 uint64_t write_wrap_count() const { return write_wrap_count_; } in write_wrap_count()
112 void set_write_wrap_count(uint64_t value) { write_wrap_count_ = value; } in set_write_wrap_count()
144 uint64_t write_wrap_count_ = {}; variable