Home
last modified time | relevance | path

Searched refs:vmstat (Results 1 – 25 of 39) sorted by relevance

12

/external/libchrome/base/process/
Dprocess_metrics_unittest.cc216 VmStatInfo vmstat; in TEST_F() local
306 EXPECT_TRUE(ParseProcVmstat(valid_input1, &vmstat)); in TEST_F()
307 EXPECT_EQ(179LU, vmstat.pswpin); in TEST_F()
308 EXPECT_EQ(406LU, vmstat.pswpout); in TEST_F()
309 EXPECT_EQ(487192LU, vmstat.pgmajfault); in TEST_F()
310 EXPECT_TRUE(ParseProcVmstat(valid_input2, &vmstat)); in TEST_F()
311 EXPECT_EQ(12LU, vmstat.pswpin); in TEST_F()
312 EXPECT_EQ(901LU, vmstat.pswpout); in TEST_F()
313 EXPECT_EQ(2023LU, vmstat.pgmajfault); in TEST_F()
318 EXPECT_FALSE(ParseProcVmstat(missing_pgmajfault_input, &vmstat)); in TEST_F()
[all …]
Dprocess_metrics.cc80 std::unique_ptr<DictionaryValue> vmstat = vmstat_info_.ToValue(); in ToValue() local
81 meminfo->MergeDictionary(vmstat.get()); in ToValue()
Dprocess_metrics_linux.cc567 bool ParseProcVmstat(StringPiece vmstat_data, VmStatInfo* vmstat) { in ParseProcVmstat() argument
593 vmstat->pswpin = val; in ParseProcVmstat()
597 vmstat->pswpout = val; in ParseProcVmstat()
601 vmstat->pgmajfault = val; in ParseProcVmstat()
644 bool GetVmStatInfo(VmStatInfo* vmstat) { in GetVmStatInfo() argument
654 if (!ParseProcVmstat(vmstat_data, vmstat)) { in GetVmStatInfo()
Dprocess_metrics.h397 BASE_EXPORT bool GetVmStatInfo(VmStatInfo* vmstat);
402 BASE_EXPORT bool ParseProcVmstat(StringPiece input, VmStatInfo* vmstat);
/external/autotest/client/profilers/vmstat/
Dcontrol1 job.profilers.add('vmstat', 2)
3 job.profilers.delete('vmstat')
Dvmstat.py11 class vmstat(profiler.profiler): class
/external/autotest/client/site_tests/graphics_WebGLAquarium/
Dsystem_sampler.py64 vmstat = self.get_vmstat()
66 for start, end in zip(self._prev_vmstat, vmstat)])
67 self._prev_vmstat = vmstat
/external/autotest/client/site_tests/power_Consumption/
Dcontrol.fast33 job.profilers.add('vmstat', INTERVAL_SECS)
35 job.profilers.delete('vmstat')
Dcontrol34 job.profilers.add('vmstat', INTERVAL_SECS)
39 job.profilers.delete('vmstat')
/external/perfetto/protos/perfetto/trace/sys_stats/
Dsys_stats.proto33 // Counter from /proc/vmstat. Units are often pages, not KB.
38 repeated VmstatValue vmstat = 2; field
/external/perfetto/src/traced/probes/sys_stats/
Dsys_stats_data_source.cc306 auto* vmstat = sys_stats->add_vmstat(); in ReadVmstat() local
307 vmstat->set_key(static_cast<protos::pbzero::VmstatCounters>(counter_id)); in ReadVmstat()
308 vmstat->set_value(value); in ReadVmstat()
Dsys_stats_data_source_unittest.cc333 for (const auto& kv : sys_stats.vmstat()) in TEST_F()
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/
Dhotplug05.txt10 # TODO: Start monitoring memory usage via vmstat and sar
/external/perfetto/ui/src/common/
Dstate.ts431 vmstat: boolean; property
497 vmstat: false,
/external/bcc/tools/
Dwakeuptime_example.txt18 first stack trace shown is for a "vmstat" thread, which was woken up by
20 The total time is 4.0 seconds: this actually corresponds to a "vmstat 1"
22 wakes up vmstat:
29 target: vmstat
371 vmstat;entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;tty_write;n_tty_write;pty_write;tt…
422 …ent_percpu;xen_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;vmstat 4000417
Doffwaketime_example.txt80 target: vmstat
164 via vfs_read() and the other doing a link_path_walk(). There is also a vmstat(8)
292 vmstat;entry_SYSCALL_64_fastpath;sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;-;hrtimer_wa…
Dopensnoop_example.txt22 1576 snmpd 9 0 /proc/vmstat
/external/autotest/server/samples/
Dprofilertest.srv59 profilers = [["vmstat"], ["iostat"]]
/external/perfetto/protos/perfetto/common/
Dsys_stats_counters.proto62 // Counter definitions for Linux's /proc/vmstat.
/external/perfetto/protos/perfetto/config/sys_stats/
Dsys_stats_config.proto42 // Polls /proc/vmstat every X ms, if non-zero.
/external/perfetto/test/
Dend_to_end_integrationtest.cc525 const auto& vmstat = sys_stats.vmstat(); in TEST_F() local
526 ASSERT_GT(vmstat.size(), 0u); in TEST_F()
527 for (const auto& vmstat_value : vmstat) { in TEST_F()
/external/toybox/
DAndroid.bp210 "toys/other/vmstat.c",
409 "vmstat",
/external/perfetto/ui/src/frontend/
Drecord_page.ts569 setEnabled: (cfg, val) => cfg.vmstat = val,
570 isEnabled: (cfg) => cfg.vmstat
/external/perfetto/docs/data-sources/
Dmemory-counters.md81 (a subset of the ones exposed by `/proc/vmstat`). Unlike RSS-stat counter
156 - `/proc/vmstat`
/external/perfetto/src/trace_processor/importers/proto/
Dsystem_probes_parser.cc136 for (auto it = sys_stats.vmstat(); it; ++it) { in ParseSysStats()

12