Searched refs:read_ios (Results 1 – 5 of 5) sorted by relevance
/aosp12/system/core/storaged/include/ |
H A D | storaged_diskstats.h | 38 uint64_t read_ios; // number of read I/Os processed member 56 return read_ios == 0 && write_ios == 0 && in is_zero() 61 curr.read_ios -= prev.read_ios; 76 return a.read_ios == b.read_ios && 90 read_ios += stats.read_ios; 107 uint32_t read_ios; // read I/Os per second member 112 return read_perf == 0 && read_ios == 0 && in is_zero() 155 stream_stats read_ios; // read I/Os per second member
|
/aosp12/system/core/storaged/ |
H A D | storaged_diskstats.cpp | 44 LOG(INFO) << "disk_perf " << type << " rd: " << perf->read_perf << " kbps, " << perf->read_ios in log_debug_disk_perf() 59 << stats->read_ios << stats->read_merges in log_event_disk_stats() 111 dst->read_ios = src.reads; in convert_hal_disk_stats() 169 perf.read_ios = ((unsigned long long)SEC_TO_MSEC * in get_disk_perf() 170 stats->read_ios * stats->io_in_queue + in get_disk_perf() 227 mMean.read_ios = (uint32_t)mStats.read_ios.get_mean(); in update_mean() 237 mStd.read_ios = (uint32_t)mStats.read_ios.get_std(); in update_std() 246 mStats.read_ios.add(perf->read_ios); in add() 254 mStats.read_ios.evict(perf->read_ios); in evict()
|
H A D | EventLogTags.logtags | 37 2732 storaged_disk_stats (type|3),(start_time|2|3),(end_time|2|3),(read_ios|2|1),(read_merges|2|1),…
|
/aosp12/system/core/storaged/tests/ |
H A D | storaged_test.cpp | 187 retval.read_ios = (double)perf.read_ios * mul; in disk_perf_multiply() 197 retval.read_ios = stats1.read_ios + stats2.read_ios; in disk_stats_add() 214 EXPECT_LE(stats1.read_ios, stats2.read_ios); in expect_increasing() 225 EXPECT_TRUE(stats1.read_ios < stats2.read_ios || in expect_increasing() 254 .read_ios = 50, in TEST() 282 test_perf.read_ios = (double)test_mean.read_ios - i * test_std.read_ios; in TEST() 293 .read_ios = 200, in TEST() 311 .read_ios = 200, in TEST()
|
/aosp12/frameworks/native/cmds/dumpstate/ |
H A D | dumpstate.cpp | 654 unsigned long read_ios = 0; in dump_stat_from_fd() local 662 read_ios = ((unsigned long long)S_TO_MS * fields[__STAT_READ_IOS] in dump_stat_from_fd() 686 printf("%-30s: perf(ios) rd: %luKB/s(%lu/s) q: %u\n", path, read_perf, read_ios, queue); in dump_stat_from_fd() 689 read_ios, write_perf, write_ios, queue); in dump_stat_from_fd()
|