Searched refs:fsyncCalls (Results 1 – 8 of 8) sorted by relevance
198 && record.foreground_fsync == foreground.fsyncCalls in representsSameMetrics()249 public final long fsyncCalls; field in IoStatsEntry.Metrics252 long bytesWrittenToStorage, long fsyncCalls) { in Metrics() argument257 this.fsyncCalls = fsyncCalls; in Metrics()271 dest.writeLong(fsyncCalls); in writeToParcel()283 jsonWriter.name("fsyncCalls").value(fsyncCalls); in writeToJson()292 fsyncCalls = in.readLong(); in Metrics()303 fsyncCalls = in.getLong("fsyncCalls"); in Metrics()320 fsyncCalls - other.fsyncCalls); in delta()332 && (fsyncCalls == metrics.fsyncCalls); in equals()[all …]
140 long fsyncCalls = 0; in getForegroundTotals() local147 fsyncCalls += stats.foreground.fsyncCalls; in getForegroundTotals()154 fsyncCalls); in getForegroundTotals()166 long fsyncCalls = 0; in getBackgroundTotals() local173 fsyncCalls += stats.background.fsyncCalls; in getBackgroundTotals()180 fsyncCalls); in getBackgroundTotals()195 foreground.fsyncCalls + background.fsyncCalls); in getTotals()
79 foreground_fsync - other.foreground.fsyncCalls, in delta()84 background_fsync - other.background.fsyncCalls); in delta()
78 final long fsyncCalls = uidIoStats.foreground.fsyncCalls +79 uidIoStats.background.fsyncCalls;80 if (bytesWrittenToStorage > 0 || fsyncCalls > 0) {86 fsyncCalls));96 .mapToLong(stats -> stats.foreground.fsyncCalls +97 stats.background.fsyncCalls)
376 assertThat(entry.foreground.fsyncCalls).isEqualTo(250); in testUidIoStatEntry()381 assertThat(entry.background.fsyncCalls).isEqualTo(0); in testUidIoStatEntry()391 assertThat(entry.foreground.fsyncCalls).isEqualTo(1); in testUidIoStatEntry()396 assertThat(entry.background.fsyncCalls).isEqualTo(1); in testUidIoStatEntry()509 assertThat(delta21.foreground.fsyncCalls).isEqualTo(100); in testUidIoStatEntryDelta()515 assertThat(delta21.background.fsyncCalls).isEqualTo(10); in testUidIoStatEntryDelta()625 assertThat(foregroundTotals.fsyncCalls).isEqualTo(1); in testUidIoStatsTotals()632 assertThat(backgroundTotals.fsyncCalls).isEqualTo(3); in testUidIoStatsTotals()638 assertThat(overallTotals.fsyncCalls).isEqualTo(4); in testUidIoStatsTotals()
242 assertEquals(1, sample0.foreground.fsyncCalls); in testUpdateGoAwayComeBackIo()
325 (total.fsyncCalls > mConfiguration.acceptableFsyncCallsPerSample); in needsExcessiveIoBroadcastLocked()
1204 field public final long fsyncCalls;