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

  /external/chromium_org/base/
sys_info.cc 12 int64 SysInfo::Uptime() {
14 // its return value happens to coincide with the system uptime value in
sys_info_unittest.cc 54 TEST_F(SysInfoTest, Uptime) {
55 int64 up_time_1 = base::SysInfo::Uptime();
56 // UpTime() is implemented internally using TimeTicks::Now(), which documents
59 int64 up_time_2 = base::SysInfo::Uptime();
sys_info.h 38 // Returns system uptime in milliseconds.
39 static int64 Uptime();
  /external/chromium_org/chrome/browser/chromeos/system/
automatic_reboot_manager_unittest.cc 57 // corresponding device uptime is written to |uptime_file_|, providing a mock
58 // for /proc/uptime.
74 void SetUptime(const base::TimeDelta& uptime);
76 const base::TimeDelta& Uptime() const;
132 void SetUpdateRebootNeededUptime(const base::TimeDelta& uptime);
144 bool ReadUpdateRebootNeededUptimeFromFile(base::TimeDelta* uptime);
152 // The uptime is read in the blocking thread pool and then processed on the
153 // UI thread. This causes the UI thread to start processing the uptime when it
156 // the uptime seen by the UI thread.
209 const base::TimeDelta& uptime) {
    [all...]
  /external/chromium_org/chrome/common/
startup_metric_utils.cc 69 // Bail if uptime < 7 minutes, to filter out cases where Chrome may have been
73 if (base::SysInfo::Uptime() < kSevenMinutesInMilliseconds) {
  /external/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_proxy.cc 343 information_->SetInteger("uptime", base::SysInfo::Uptime());

Completed in 42 milliseconds