Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/bluetooth/1.0/vts/functional/
H A DVtsHalBluetoothV1_0TargetTest.cpp123 if (total_bytes_ == 0) return; in ~ThroughputLogger()
128 double rate_kb = (static_cast<double>(total_bytes_) / s) / 1024; in ~ThroughputLogger()
130 total_bytes_, s); in ~ThroughputLogger()
133 void setTotalBytes(size_t total_bytes) { total_bytes_ = total_bytes; } in setTotalBytes()
136 size_t total_bytes_; member in ThroughputLogger
/aosp12/hardware/interfaces/bluetooth/1.1/vts/functional/
H A DVtsHalBluetoothV1_1TargetTest.cpp124 if (total_bytes_ == 0) return; in ~ThroughputLogger()
129 double rate_kb = (static_cast<double>(total_bytes_) / s) / 1024; in ~ThroughputLogger()
131 total_bytes_, s); in ~ThroughputLogger()
134 void setTotalBytes(size_t total_bytes) { total_bytes_ = total_bytes; } in setTotalBytes()
137 size_t total_bytes_; member in ThroughputLogger
/aosp12/art/tools/dexanalyze/
H A Ddexanalyze_experiments.h72 int64_t total_bytes_ = 0u;
H A Ddexanalyze_experiments.cc161 total_bytes_ += bytes; in ProcessDexFiles()
189 os << "Debug info bytes " << Percent(total_bytes_, total_size) << "\n"; in Dump()