HomeSort by relevance Sort by last modified time
    Searched refs:io_counters (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/test/base/
chrome_process_util.h 48 bool GetIOCounters(base::IoCounters* io_counters) {
49 return process_metrics_->GetIOCounters(io_counters);
  /external/chromium_org/chrome/test/perf/
perf_test.cc 208 base::IoCounters io_counters; local
209 memset(&io_counters, 0, sizeof(io_counters));
211 if (process_metrics.get()->GetIOCounters(&io_counters)) {
216 size_t read_op = static_cast<size_t>(io_counters.ReadOperationCount);
217 size_t write_op = static_cast<size_t>(io_counters.WriteOperationCount);
218 size_t other_op = static_cast<size_t>(io_counters.OtherOperationCount);
219 size_t total_op = static_cast<size_t>(io_counters.ReadOperationCount +
220 io_counters.WriteOperationCount +
221 io_counters.OtherOperationCount)
    [all...]
  /external/chromium_org/base/process/
process_metrics_linux.cc 206 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
215 (*io_counters).OtherOperationCount = 0;
216 (*io_counters).OtherTransferCount = 0;
231 reinterpret_cast<int64*>(&(*io_counters).ReadOperationCount));
234 reinterpret_cast<int64*>(&(*io_counters).WriteOperationCount));
237 reinterpret_cast<int64*>(&(*io_counters).ReadTransferCount));
240 reinterpret_cast<int64*>(&(*io_counters).WriteTransferCount));
process_metrics.h 25 struct IoCounters : public IO_COUNTERS {
172 // and fills in the IO_COUNTERS passed in. The function returns false
174 bool GetIOCounters(IoCounters* io_counters) const;
process_metrics_freebsd.cc 95 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
process_metrics_win.cc 265 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
266 return GetProcessIoCounters(process_, io_counters) != FALSE;
process_metrics_openbsd.cc 87 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
process_metrics_mac.cc 280 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
  /external/chromium/base/
process_util_linux.cc 472 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
483 (*io_counters).OtherOperationCount = 0;
484 (*io_counters).OtherTransferCount = 0;
499 reinterpret_cast<int64*>(&(*io_counters).ReadOperationCount));
502 reinterpret_cast<int64*>(&(*io_counters).WriteOperationCount));
505 reinterpret_cast<int64*>(&(*io_counters).ReadTransferCount));
508 reinterpret_cast<int64*>(&(*io_counters).WriteTransferCount));
process_util_win.cc 787 bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
788 return GetProcessIoCounters(process_, io_counters) != FALSE;
process_util.h 52 struct IoCounters : public IO_COUNTERS {
601 // and fills in the IO_COUNTERS passed in. The function returns false
603 bool GetIOCounters(IoCounters* io_counters) const;

Completed in 4574 milliseconds