Home
last modified time | relevance | path

Searched refs:patches_discarded_ (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/tracing/core/
Dtrace_stats.cc52 (patches_discarded_ == other.patches_discarded_); in operator ==()
99 static_assert(sizeof(patches_discarded_) == sizeof(proto.patches_discarded()), in FromProto()
101 patches_discarded_ = in FromProto()
102 static_cast<decltype(patches_discarded_)>(proto.patches_discarded()); in FromProto()
155 sizeof(patches_discarded_) == sizeof(proto->patches_discarded()), in ToProto()
158 static_cast<decltype(proto->patches_discarded())>(patches_discarded_)); in ToProto()
Dtracing_service_impl.h553 uint64_t patches_discarded_ = 0; variable
Dtracing_service_impl.cc1948 patches_discarded_ += static_cast<uint64_t>(chunk.patches_size()); in ApplyChunkPatches()
1967 patches_discarded_ += static_cast<uint64_t>(chunk.patches_size()); in ApplyChunkPatches()
1978 patches_discarded_++; in ApplyChunkPatches()
2192 trace_stats.set_patches_discarded(patches_discarded_); in GetTraceStats()
/external/perfetto/include/perfetto/tracing/core/
Dtrace_stats.h203 uint64_t patches_discarded() const { return patches_discarded_; } in patches_discarded()
204 void set_patches_discarded(uint64_t value) { patches_discarded_ = value; } in set_patches_discarded()
215 uint64_t patches_discarded_ = {}; variable