Home
last modified time | relevance | path

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

/hardware/google/pixel/perfstatsd/
Dio_usage.cpp285 mTotal.reset(); in calcAll()
293 mTotal = mTotal + d; in calcAll()
322 if (!formatNum(mTotal.sumRead(), readTotal, 32)) { in dump()
323 LOG(ERROR) << "formatNum buffer size is too small for read: " << mTotal.sumRead(); in dump()
325 if (!formatNum(mTotal.sumWrite(), writeTotal, 32)) { in dump()
326 LOG(ERROR) << "formatNum buffer size is too small for write: " << mTotal.sumWrite(); in dump()
330 readTotal, writeTotal, mTotal.fgFsync + mTotal.bgFsync); in dump()
332 if (mTotal.sumRead() >= mMinSizeOfTotalRead || mTotal.sumWrite() >= mMinSizeOfTotalWrite) { in dump()
336 if (mTotal.sumRead() < mMinSizeOfTotalRead) { in dump()
345 float percent = 100.0f * target.sumRead() / mTotal.sumRead(); in dump()
[all …]
/hardware/google/pixel/perfstatsd/include/
Dio_usage.h136 UserIo mTotal; variable