Searched refs:platform_backend (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dmac_platform_backend_unittest.py10 from telemetry.core.platform import platform_backend namespace
15 self.assertGreater(platform_backend.YOSEMITE,
16 platform_backend.MAVERICKS)
17 self.assertGreater(platform_backend.MAVERICKS,
18 platform_backend.SNOWLEOPARD)
19 self.assertGreater(platform_backend.LION,
20 platform_backend.LEOPARD)
21 self.assertEqual(platform_backend.YOSEMITE, 'yosemite')
22 self.assertEqual(platform_backend.MAVERICKS, 'mavericks')
23 self.assertEqual('%s2' % platform_backend
[all...]
H A Ddesktop_platform_backend.py8 from telemetry.core.platform import platform_backend namespace
12 class DesktopPlatformBackend(platform_backend.PlatformBackend):
H A Dmac_platform_backend.py10 from telemetry.core.platform import platform_backend namespace
96 if self.GetOSVersionName() >= platform_backend.MAVERICKS:
137 return platform_backend.LEOPARD
139 return platform_backend.SNOWLEOPARD
141 return platform_backend.LION
143 return platform_backend.MOUNTAINLION
145 return platform_backend.MAVERICKS
147 return platform_backend.YOSEMITE
155 mavericks_or_later = self.GetOSVersionName() >= platform_backend.MAVERICKS
H A Dprofiling_controller_backend.py8 def __init__(self, platform_backend):
9 self._platform_backend = platform_backend
H A Dtracing_controller_backend.py10 def __init__(self, platform_backend):
11 self._platform_backend = platform_backend
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dtrace_profiler.py13 def __init__(self, browser_backend, platform_backend, output_path, state,
16 browser_backend, platform_backend, output_path, state)
53 def __init__(self, browser_backend, platform_backend, output_path, state):
55 browser_backend, platform_backend, output_path, state,
65 def __init__(self, browser_backend, platform_backend, output_path, state):
67 browser_backend, platform_backend, output_path, state,
H A Dandroid_screen_recorder_profiler.py16 def __init__(self, browser_backend, platform_backend, output_path, state):
18 browser_backend, platform_backend, output_path, state)
H A D__init__.py20 def __init__(self, browser_backend, platform_backend, output_path, state):
22 self._platform_backend = platform_backend
42 def WillCloseBrowser(cls, browser_backend, platform_backend):
H A Dvtune_profiler.py17 def __init__(self, pid, output_file, browser_backend, platform_backend):
20 self._platform_backend = platform_backend
25 self._is_android = platform_backend.GetOSName() == 'android'
87 def __init__(self, browser_backend, platform_backend, output_path, state):
89 browser_backend, platform_backend, output_path, state)
108 platform_backend))
H A Doomkiller_profiler.py30 def __init__(self, browser_backend, platform_backend, output_path, state):
32 browser_backend, platform_backend, output_path, state)
63 def WillCloseBrowser(cls, browser_backend, platform_backend):
H A Dandroid_systrace_profiler.py26 def __init__(self, browser_backend, platform_backend, output_path, state):
28 browser_backend, platform_backend, output_path, state)
H A Dperf_profiler.py70 def __init__(self, pid, output_file, browser_backend, platform_backend,
74 self._platform_backend = platform_backend
77 self._is_android = platform_backend.GetOSName() == 'android'
165 def __init__(self, browser_backend, platform_backend, output_path, state):
167 browser_backend, platform_backend, output_path, state)
174 if platform_backend.GetOSName() == 'android':
187 pid, output_file, browser_backend, platform_backend,
H A Dtcpdump_profiler.py97 def __init__(self, browser_backend, platform_backend, output_path, state):
99 browser_backend, platform_backend, output_path, state)
100 if platform_backend.GetOSName() == 'android':
H A Dtcmalloc_heap_profiler.py97 def __init__(self, browser_backend, platform_backend, output_path, state):
99 browser_backend, platform_backend, output_path, state)
100 if platform_backend.GetOSName() == 'android':
126 def WillCloseBrowser(cls, browser_backend, platform_backend):
H A Dandroid_traceview_profiler.py17 def __init__(self, browser_backend, platform_backend, output_path, state):
19 browser_backend, platform_backend, output_path, state)
H A Diprofiler_profiler.py69 def __init__(self, browser_backend, platform_backend, output_path, state):
71 browser_backend, platform_backend, output_path, state)
H A Dmonsoon_profiler.py68 def __init__(self, browser_backend, platform_backend, output_path, state):
70 browser_backend, platform_backend, output_path, state)
H A Dsample_profiler.py60 def __init__(self, browser_backend, platform_backend, output_path, state):
62 browser_backend, platform_backend, output_path, state)
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dcros_browser_with_oobe.py11 def __init__(self, backend, platform_backend, archive_path,
16 platform_backend,
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dippet_power_monitor_unittest.py21 platform_backend = win_platform_backend.WinPlatformBackend()
22 power_monitor = ippet_power_monitor.IppetPowerMonitor(platform_backend)
H A Dmsr_power_monitor_unittest.py17 platform_backend = win_platform_backend.WinPlatformBackend()
18 power_monitor = msr_power_monitor.MsrPowerMonitor(platform_backend)
H A Dpowermetrics_power_monitor_unittest.py12 from telemetry.core.platform import platform_backend namespace
22 backend.GetOSVersionName() >= platform_backend.MAVERICKS)
H A Dandroid_dumpsys_power_monitor.py17 def __init__(self, device, platform_backend):
22 platform_backend: A LinuxBasedPlatformBackend instance.
24 super(DumpsysPowerMonitor, self).__init__(platform_backend)
/external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
H A Dwebdriver_ie_backend.py13 def __init__(self, platform_backend, driver_creator, browser_options):
18 self._platform_backend = platform_backend
H A Dwebdriver_desktop_browser_finder.py37 def CreateWebDriverBackend(self, platform_backend):
77 def CreateWebDriverBackend(self, platform_backend):
84 platform_backend, DriverCreator, self.finder_options.browser_options)

Completed in 192 milliseconds

12