/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
D | tcmalloc_heap_profiler.py | 25 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 …]
|
D | trace_profiler.py | 15 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,
|
D | perf_profiler.py | 73 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,
|
D | win_pgo_profiler.py | 20 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
|
D | vtune_profiler.py | 20 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,
|
D | android_screen_recorder_profiler.py | 21 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__.py | 20 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
|
D | tcpdump_profiler.py | 104 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)
|
D | android_systrace_profiler.py | 27 def __init__(self, browser_backend, platform_backend, output_path, state, argument 30 browser_backend, platform_backend, output_path, state)
|
D | sample_profiler.py | 61 def __init__(self, browser_backend, platform_backend, output_path, state): argument 63 browser_backend, platform_backend, output_path, state)
|
D | iprofiler_profiler.py | 68 def __init__(self, browser_backend, platform_backend, output_path, state): argument 70 browser_backend, platform_backend, output_path, state)
|
D | android_traceview_profiler.py | 23 def __init__(self, browser_backend, platform_backend, output_path, state): argument 25 browser_backend, platform_backend, output_path, state)
|
D | monsoon_profiler.py | 68 def __init__(self, browser_backend, platform_backend, output_path, state): argument 70 browser_backend, platform_backend, output_path, state)
|
D | java_heap_profiler.py | 28 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/ |
D | chrome_browser_backend_unittest.py | 67 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()))
|
D | extension_backend.py | 14 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)
|
D | misc_web_contents_backend.py | 16 def __init__(self, browser_backend): argument 17 super(MiscWebContentsBackend, self).__init__(browser_backend)
|
D | cros_browser_finder.py | 43 browser_backend = cros_browser_backend.CrOSBrowserBackend( 48 browser_backend, 52 browser_backend, self._platform_backend, self._credentials_path)
|
D | tab_list_backend.py | 21 def __init__(self, browser_backend): argument 22 super(TabListBackend, self).__init__(browser_backend)
|
D | ios_browser_finder.py | 34 browser_backend = ios_browser_backend.IosBrowserBackend( 37 browser_backend, self._platform_backend, self._credentials_path)
|
D | android_browser_finder.py | 122 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/ |
D | platform_backend.py | 97 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)
|
D | profiling_controller_backend.py | 8 def __init__(self, platform_backend, browser_backend): argument 10 self._browser_backend = browser_backend
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/ |
D | browser_backend_unittest.py | 9 from telemetry.internal.backends import browser_backend 23 class FakeBrowserBackend(browser_backend.BrowserBackend):
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ |
D | inspector_backend_list.py | 16 def __init__(self, browser_backend): argument 23 self._browser_backend = browser_backend
|