Home
last modified time | relevance | path

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

/hardware/google/pixel/perfstatsd/
Dio_usage.cpp280 mTotal.reset(); in calcAll()
288 mTotal = mTotal + d; in calcAll()
317 if (!formatNum(mTotal.sumRead(), readTotal, 32)) { in dump()
318 LOG(ERROR) << "formatNum buffer size is too small for read: " << mTotal.sumRead(); in dump()
320 if (!formatNum(mTotal.sumWrite(), writeTotal, 32)) { in dump()
321 LOG(ERROR) << "formatNum buffer size is too small for write: " << mTotal.sumWrite(); in dump()
325 readTotal, writeTotal, mTotal.fgFsync + mTotal.bgFsync); in dump()
327 if (mTotal.sumRead() >= mMinSizeOfTotalRead || mTotal.sumWrite() >= mMinSizeOfTotalWrite) { in dump()
331 if (mTotal.sumRead() < mMinSizeOfTotalRead) { in dump()
340 float percent = 100.0f * target.sumRead() / mTotal.sumRead(); in dump()
[all …]
/hardware/google/pixel/perfstatsd/include/
Dio_usage.h136 UserIo mTotal; variable