Home
last modified time | relevance | path

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

/external/perfetto/src/tracing/core/
Dheapprofd_config.cc49 (shmem_size_bytes_ == other.shmem_size_bytes_) && in operator ==()
94 static_assert(sizeof(shmem_size_bytes_) == sizeof(proto.shmem_size_bytes()), in FromProto()
96 shmem_size_bytes_ = in FromProto()
97 static_cast<decltype(shmem_size_bytes_)>(proto.shmem_size_bytes()); in FromProto()
139 static_assert(sizeof(shmem_size_bytes_) == sizeof(proto->shmem_size_bytes()), in ToProto()
142 static_cast<decltype(proto->shmem_size_bytes())>(shmem_size_bytes_)); in ToProto()
/external/perfetto/include/perfetto/tracing/core/
Dheapprofd_config.h152 uint64_t shmem_size_bytes() const { return shmem_size_bytes_; } in shmem_size_bytes()
153 void set_shmem_size_bytes(uint64_t value) { shmem_size_bytes_ = value; } in set_shmem_size_bytes()
165 uint64_t shmem_size_bytes_ = {}; variable