Home
last modified time | relevance | path

Searched refs:browser_backend (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dtcmalloc_heap_profiler.py25 def __init__(self, browser_backend, output_path): argument
26 self._browser_backend = browser_backend
77 def __init__(self, browser_backend): argument
78 self._browser_backend = browser_backend
103 def __init__(self, browser_backend, platform_backend, output_path, state): argument
105 browser_backend, platform_backend, output_path, state)
108 browser_backend, output_path)
110 self._platform_profiler = _TCMallocHeapProfilerLinux(browser_backend)
132 def WillCloseBrowser(cls, browser_backend, platform_backend): argument
137 for i in xrange(len(browser_backend.browser.tabs)):
[all …]
Dtrace_profiler.py15 def __init__(self, browser_backend, platform_backend, output_path, state, argument
18 browser_backend, platform_backend, output_path, state)
60 def __init__(self, browser_backend, platform_backend, output_path, state): argument
62 browser_backend, platform_backend, output_path, state,
72 def __init__(self, browser_backend, platform_backend, output_path, state): argument
74 browser_backend, platform_backend, output_path, state,
Dperf_profiler.py73 def __init__(self, pid, output_file, browser_backend, platform_backend, argument
76 self._browser_backend = browser_backend
87 browser_backend.device.adb.GetAdbPath(),
88 '-s', browser_backend.device.adb.GetDeviceSerial(),
94 browser_backend.device.RunShellCommand(
97 browser_backend.device.RemovePath(self._device_output_file, force=True)
175 def __init__(self, browser_backend, platform_backend, output_path, state): argument
177 browser_backend, platform_backend, output_path, state)
185 device = browser_backend.device
197 pid, output_file, browser_backend, platform_backend,
Dwin_pgo_profiler.py20 def __init__(self, browser_backend, platform_backend, output_path, state): argument
22 browser_backend, platform_backend, output_path, state)
26 if os.path.exists(os.path.join(browser_backend.browser_directory,
28 self._pgosweep_path = os.path.join(browser_backend.browser_directory,
40 self._browser_dir = browser_backend.browser_directory
Dvtune_profiler.py20 def __init__(self, pid, output_file, browser_backend, platform_backend): argument
22 self._browser_backend = browser_backend
94 def __init__(self, browser_backend, platform_backend, output_path, state): argument
96 browser_backend, platform_backend, output_path, state)
114 _SingleProcessVTuneProfiler(pid, output_file, browser_backend,
Dandroid_screen_recorder_profiler.py21 def __init__(self, browser_backend, platform_backend, output_path, state): argument
23 browser_backend, platform_backend, output_path, state)
26 browser_backend.device,
D__init__.py20 def __init__(self, browser_backend, platform_backend, output_path, state): argument
21 self._browser_backend = browser_backend
42 def WillCloseBrowser(cls, browser_backend, platform_backend): argument
Dtcpdump_profiler.py104 def __init__(self, browser_backend, platform_backend, output_path, state): argument
106 browser_backend, platform_backend, output_path, state)
109 browser_backend.device, 'tcpdump')
111 browser_backend.device, output_path)
Dandroid_systrace_profiler.py27 def __init__(self, browser_backend, platform_backend, output_path, state, argument
30 browser_backend, platform_backend, output_path, state)
Dsample_profiler.py61 def __init__(self, browser_backend, platform_backend, output_path, state): argument
63 browser_backend, platform_backend, output_path, state)
Diprofiler_profiler.py68 def __init__(self, browser_backend, platform_backend, output_path, state): argument
70 browser_backend, platform_backend, output_path, state)
Dandroid_traceview_profiler.py23 def __init__(self, browser_backend, platform_backend, output_path, state): argument
25 browser_backend, platform_backend, output_path, state)
Dmonsoon_profiler.py68 def __init__(self, browser_backend, platform_backend, output_path, state): argument
70 browser_backend, platform_backend, output_path, state)
Djava_heap_profiler.py28 def __init__(self, browser_backend, platform_backend, output_path, state): argument
30 browser_backend, platform_backend, output_path, state)
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
Dchrome_browser_backend_unittest.py67 browser_backend = TestChromeBrowserBackend(browser_options)
68 self.assertEqual([], browser_backend.GetReplayBrowserStartupArgs())
72 browser_backend = TestChromeBrowserBackend(
83 sorted(browser_backend.GetReplayBrowserStartupArgs()))
92 browser_backend = TestChromeBrowserBackend(
100 sorted(browser_backend.GetReplayBrowserStartupArgs()))
Dextension_backend.py14 def __init__(self, browser_backend): argument
15 super(ExtensionBackendList, self).__init__(browser_backend)
26 def __init__(self, browser_backend): argument
27 self._extension_backend_list = ExtensionBackendList(browser_backend)
Dmisc_web_contents_backend.py16 def __init__(self, browser_backend): argument
17 super(MiscWebContentsBackend, self).__init__(browser_backend)
Dcros_browser_finder.py43 browser_backend = cros_browser_backend.CrOSBrowserBackend(
48 browser_backend,
52 browser_backend, self._platform_backend, self._credentials_path)
Dtab_list_backend.py21 def __init__(self, browser_backend): argument
22 super(TabListBackend, self).__init__(browser_backend)
Dios_browser_finder.py34 browser_backend = ios_browser_backend.IosBrowserBackend(
37 browser_backend, self._platform_backend, self._credentials_path)
Dandroid_browser_finder.py122 browser_backend = android_browser_backend.AndroidBrowserBackend(
127 browser_backend, self._platform_backend, self._credentials_path)
132 browser_backend.Close()
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
Dplatform_backend.py97 def DidCreateBrowser(self, browser, browser_backend): argument
98 browser_options = browser_backend.browser_options
101 def DidStartBrowser(self, browser, browser_backend): argument
103 self._running_browser_backends.add(browser_backend)
105 def WillCloseBrowser(self, browser, browser_backend): argument
110 self._running_browser_backends.discard(browser_backend)
Dprofiling_controller_backend.py8 def __init__(self, platform_backend, browser_backend): argument
10 self._browser_backend = browser_backend
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
Dbrowser_backend_unittest.py9 from telemetry.internal.backends import browser_backend
23 class FakeBrowserBackend(browser_backend.BrowserBackend):
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
Dinspector_backend_list.py16 def __init__(self, browser_backend): argument
23 self._browser_backend = browser_backend

12