Searched refs:stat (Results 1 – 3 of 3) sorted by relevance
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | JankStat.java | 172 for (JankStat stat : statHistory) { in mergeStatHistory() 173 totalTotalFrames += stat.totalFrames; in mergeStatHistory() 174 totalJankyFrames += stat.jankyFrames; in mergeStatHistory() 175 totalNumMissedVsync += stat.numMissedVsync; in mergeStatHistory() 176 totalNumHighLatency += stat.numHighLatency; in mergeStatHistory() 177 totalNumSlowUiThread += stat.numSlowUiThread; in mergeStatHistory() 178 totalNumSlowBitmap += stat.numSlowBitmap; in mergeStatHistory() 179 totalNumSlowDraw += stat.numSlowDraw; in mergeStatHistory() 180 totalSlow24h += stat.slowestFrames24h; in mergeStatHistory() 187 for (JankStat stat : statHistory) { in mergeStatHistory() [all …]
|
D | GraphicsStatsMonitor.java | 189 for (JankStat stat : existingStats) { in clearGraphicsStats() 190 executeShellCommand(String.format("dumpsys gfxinfo %s reset", stat.packageName)); in clearGraphicsStats() 191 Log.v(TAG, String.format("Cleared graphics stats for %s", stat.packageName)); in clearGraphicsStats() 263 JankStat stat = new JankStat(proc, since, total, janky, perc50, perc90, perc95, in gatherGraphicsStats() local 265 result.add(stat); in gatherGraphicsStats()
|
/platform_testing/tests/functional/externalstorage/src/com/android/functional/externalstoragetests/ |
D | ExternalStorageHelper.java | 149 StatFs stat = new StatFs(path.getPath()); in getFreeSpaceSize() local 150 long blockSize = stat.getBlockSize(); in getFreeSpaceSize() 151 long availableBlocks = stat.getAvailableBlocks(); in getFreeSpaceSize()
|