Home
last modified time | relevance | path

Searched refs:browser_backend (Results 1 – 25 of 34) 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
79 def __init__(self, browser_backend): argument
80 self._browser_backend = browser_backend
105 def __init__(self, browser_backend, platform_backend, output_path, state): argument
107 browser_backend, platform_backend, output_path, state)
110 browser_backend, output_path)
112 self._platform_profiler = _TCMallocHeapProfilerLinux(browser_backend)
134 def WillCloseBrowser(cls, browser_backend, platform_backend): argument
139 for i in xrange(len(browser_backend.browser.tabs)):
[all …]
Doomkiller_profiler.py28 def __init__(self, browser_backend, platform_backend, output_path, state): argument
30 browser_backend, platform_backend, output_path, state)
47 intent.Intent(package=browser_backend.package,
48 activity=browser_backend.activity),
62 def WillCloseBrowser(cls, browser_backend, platform_backend): argument
63 browser_backend.device.ForceStop('org.chromium.memconsumer')
Dtrace_profiler.py16 def __init__(self, browser_backend, platform_backend, output_path, state, argument
19 browser_backend, platform_backend, output_path, state)
61 def __init__(self, browser_backend, platform_backend, output_path, state): argument
63 browser_backend, platform_backend, output_path, state,
73 def __init__(self, browser_backend, platform_backend, output_path, state): argument
75 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
86 cmd_prefix = ['adb', '-s', browser_backend.device.adb.GetDeviceSerial(),
92 browser_backend.device.RunShellCommand(
94 browser_backend.device.RunShellCommand(
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,
Dvtune_profiler.py18 def __init__(self, pid, output_file, browser_backend, platform_backend): argument
20 self._browser_backend = browser_backend
90 def __init__(self, browser_backend, platform_backend, output_path, state): argument
92 browser_backend, platform_backend, output_path, state)
110 _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.py106 def __init__(self, browser_backend, platform_backend, output_path, state): argument
108 browser_backend, platform_backend, output_path, state)
111 browser_backend.device, 'tcpdump')
113 browser_backend.device, output_path)
Dwin_pgo_profiler.py20 def __init__(self, browser_backend, platform_backend, output_path, state): argument
22 browser_backend, platform_backend, output_path, state)
33 self._browser_dir = browser_backend.browser_directory
Dandroid_systrace_profiler.py27 def __init__(self, browser_backend, platform_backend, output_path, state, argument
30 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)
Diprofiler_profiler.py67 def __init__(self, browser_backend, platform_backend, output_path, state): argument
69 browser_backend, platform_backend, output_path, state)
Dsample_profiler.py60 def __init__(self, browser_backend, platform_backend, output_path, state): argument
62 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)
69 browser_backend.GetBrowserStartupArgs())
72 self.assertIn('--no-proxy-server', browser_backend.GetBrowserStartupArgs())
79 browser_backend = TestChromeBrowserBackend(browser_options)
80 self.assertEqual([], browser_backend.GetReplayBrowserStartupArgs())
84 browser_backend = TestChromeBrowserBackend(
97 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(
49 browser_backend,
53 browser_backend, self._platform_backend, self._credentials_path)
Dtab_list_backend.py20 def __init__(self, browser_backend): argument
21 super(TabListBackend, self).__init__(browser_backend)
Dandroid_browser_finder.py120 browser_backend = android_browser_backend.AndroidBrowserBackend(
127 browser_backend, self._platform_backend, self._credentials_path)
132 browser_backend.Close()
Dios_browser_finder.py34 browser_backend = ios_browser_backend.IosBrowserBackend(
37 browser_backend, self._platform_backend, self._credentials_path)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
Dplatform_backend.py90 def DidCreateBrowser(self, browser, browser_backend): argument
91 browser_options = browser_backend.browser_options
94 def DidStartBrowser(self, browser, browser_backend): argument
96 self._running_browser_backends.add(browser_backend)
98 def WillCloseBrowser(self, browser, browser_backend): argument
103 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.py6 from telemetry.internal.backends import browser_backend
14 class FakeBrowserBackend(browser_backend.BrowserBackend):
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
Ddevtools_client_backend.py12 from telemetry.internal.backends import browser_backend
34 if (isinstance(app_backend, browser_backend.BrowserBackend) and
134 if not isinstance(self._app_backend, browser_backend.BrowserBackend):
140 if not isinstance(self._app_backend, browser_backend.BrowserBackend):

12