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

  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
android_temperature_monitor_unittest.py 18 self.assertTrue(monitor.CanMonitorPower())
35 self.assertTrue(monitor.CanMonitorPower())
49 self.assertFalse(monitor.CanMonitorPower())
__init__.py 18 def CanMonitorPower(self):
android_power_monitor_controller.py 28 def CanMonitorPower(self):
29 return any(m.CanMonitorPower() for m in self._candidate_power_monitors)
41 [m for m in self._candidate_power_monitors if m.CanMonitorPower()])
android_power_monitor_controller_unittest.py 30 def CanMonitorPower(self):
41 def CanMonitorPower(self):
51 self.assertEqual(controller.CanMonitorPower(), True)
android_fuelgauge_power_monitor.py 23 def CanMonitorPower(self):
android_temperature_monitor.py 26 def CanMonitorPower(self):
msr_power_monitor_unittest.py 19 if not power_monitor.CanMonitorPower():
powermetrics_power_monitor_unittest.py 32 self.assertEqual(power_monitor.CanMonitorPower(), mavericks_or_later,
51 if not power_monitor.CanMonitorPower():
msr_power_monitor.py 41 def CanMonitorPower(self):
100 def CanMonitorPower(self):
126 def CanMonitorPower(self):
cros_power_monitor.py 32 def CanMonitorPower(self):
33 return super(CrosPowerMonitor, self).CanMonitorPower()
android_dumpsys_power_monitor.py 28 def CanMonitorPower(self):
sysfs_power_monitor.py 51 def CanMonitorPower(self):
58 if self.CanMonitorPower():
69 if SysfsPowerMonitor.CanMonitorPower(self):
monsoon_power_monitor.py 65 def CanMonitorPower(self):
powermetrics_power_monitor.py 59 def CanMonitorPower(self):
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
platform_backend_unittest.py 21 can_monitor_power = platform.CanMonitorPower()
ios_platform_backend.py 36 def CanMonitorPower(self):
cros_platform_backend.py 147 def CanMonitorPower(self):
148 return self._powermonitor.CanMonitorPower()
linux_platform_backend.py 99 def CanMonitorPower(self):
100 return self._power_monitor.CanMonitorPower()
mac_platform_backend.py 184 def CanMonitorPower(self):
185 return self._power_monitor.CanMonitorPower()
platform_backend.py 217 def CanMonitorPower(self):
win_platform_backend.py 355 def CanMonitorPower(self):
356 return self._power_monitor.CanMonitorPower()
android_platform_backend.py 426 def CanMonitorPower(self):
427 return self._power_monitor.CanMonitorPower()

Completed in 3752 milliseconds