HomeSort by relevance Sort by last modified time
    Searched refs:browser_backend (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/tools/telemetry/telemetry/core/
wpr_server.py 18 def __init__(self, browser_backend, path, is_record_mode, is_append_mode,
20 self._browser_backend = browser_backend
26 wpr_args = browser_backend.browser_options.extra_wpr_args
34 browser_backend.AddReplayServerOptions(wpr_args)
37 browser_backend.wpr_port_pairs.dns.local_port if
38 browser_backend.wpr_port_pairs.dns else 0,
39 browser_backend.wpr_port_pairs.http.local_port,
40 browser_backend.wpr_port_pairs.https.local_port,
47 browser_backend.wpr_port_pairs = forwarders.PortPairs(
50 browser_backend.wpr_port_pairs.http.remote_port o
    [all...]
local_server.py 141 def __init__(self, browser_backend):
142 self._browser_backend = browser_backend
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
trace_profiler.py 12 def __init__(self, browser_backend, platform_backend, output_path, state,
15 browser_backend, platform_backend, output_path, state)
49 def __init__(self, browser_backend, platform_backend, output_path, state):
51 browser_backend, platform_backend, output_path, state,
61 def __init__(self, browser_backend, platform_backend, output_path, state):
63 browser_backend, platform_backend, output_path, state,
oomkiller_profiler.py 27 def __init__(self, browser_backend, platform_backend, output_path, state):
29 browser_backend, platform_backend, output_path, state)
42 self._browser_backend.adb.StartActivity(browser_backend.package,
43 browser_backend.activity,
57 def WillCloseBrowser(cls, browser_backend, platform_backend):
58 browser_backend.adb.CloseApplication('org.chromium.memconsumer')
tcmalloc_heap_profiler.py 25 def __init__(self, browser_backend, output_path):
26 self._browser_backend = browser_backend
71 def __init__(self, browser_backend):
72 self._browser_backend = browser_backend
97 def __init__(self, browser_backend, platform_backend, output_path, state):
99 browser_backend, platform_backend, output_path, state)
102 browser_backend, output_path)
104 self._platform_profiler = _TCMallocHeapProfilerLinux(browser_backend)
__init__.py 20 def __init__(self, browser_backend, platform_backend, output_path, state):
21 self._browser_backend = browser_backend
42 def WillCloseBrowser(cls, browser_backend, platform_backend):
android_screen_recorder_profiler.py 15 def __init__(self, browser_backend, platform_backend, output_path, state):
17 browser_backend, platform_backend, output_path, state)
24 '--device', browser_backend.adb.device_serial()],
win_pgo_profiler.py 21 def __init__(self, browser_backend, platform_backend, output_path, state):
23 browser_backend, platform_backend, output_path, state)
34 self._browser_dir = browser_backend.browser_directory
vtune_profiler.py 17 def __init__(self, pid, output_file, browser_backend, platform_backend):
19 self._browser_backend = browser_backend
87 def __init__(self, browser_backend, platform_backend, output_path, state):
89 browser_backend, platform_backend, output_path, state)
107 _SingleProcessVTuneProfiler(pid, output_file, browser_backend,
perf_profiler.py 67 def __init__(self, pid, output_file, browser_backend, platform_backend,
70 self._browser_backend = browser_backend
79 cmd_prefix = ['adb', '-s', browser_backend.adb.device_serial(), 'shell',
85 browser_backend.adb.RunShellCommand(
87 browser_backend.adb.RunShellCommand('rm -f ' + self._device_output_file)
162 def __init__(self, browser_backend, platform_backend, output_path, state):
164 browser_backend, platform_backend, output_path, state)
172 device = browser_backend.adb.device()
184 pid, output_file, browser_backend, platform_backend,
tcpdump_profiler.py 98 def __init__(self, browser_backend, platform_backend, output_path, state):
100 browser_backend, platform_backend, output_path, state)
103 browser_backend.adb.device(), 'tcpdump')
105 browser_backend.adb, output_path)
android_systrace_profiler.py 25 def __init__(self, browser_backend, platform_backend, output_path, state):
27 browser_backend, platform_backend, output_path, state)
android_traceview_profiler.py 17 def __init__(self, browser_backend, platform_backend, output_path, state):
19 browser_backend, platform_backend, output_path, state)
iprofiler_profiler.py 69 def __init__(self, browser_backend, platform_backend, output_path, state):
71 browser_backend, platform_backend, output_path, state)
monsoon_profiler.py 68 def __init__(self, browser_backend, platform_backend, output_path, state):
70 browser_backend, platform_backend, output_path, state)
sample_profiler.py 60 def __init__(self, browser_backend, platform_backend, output_path, state):
62 browser_backend, platform_backend, output_path, state)
android_profiling_helper_unittest.py 34 browser_backend = self._browser._browser_backend
36 self._device = browser_backend.adb.device()
java_heap_profiler.py 26 def __init__(self, browser_backend, platform_backend, output_path, state):
28 browser_backend, platform_backend, output_path, state)
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
extension_backend.py 14 def __init__(self, browser_backend):
16 browser_backend, backend_wrapper=extension_page.ExtensionPage)
25 def __init__(self, browser_backend):
26 self._extension_backend_list = ExtensionBackendList(browser_backend)
misc_web_contents_backend.py 15 def __init__(self, browser_backend):
17 browser_backend, backend_wrapper=oobe.Oobe)
inspector_backend_list.py 18 def __init__(self, browser_backend, backend_wrapper):
22 browser_backend: The BrowserBackend instance to query for
30 self._browser_backend = browser_backend
tab_list_backend.py 15 def __init__(self, browser_backend):
16 super(TabListBackend, self).__init__(browser_backend,
  /external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
webdriver_browser_backend.py 6 from telemetry.core.backends import browser_backend namespace
10 class WebDriverBrowserBackend(browser_backend.BrowserBackend):
webdriver_tab_list_backend.py 8 def __init__(self, browser_backend):
9 self._browser_backend = browser_backend
webdriver_tab_backend.py 10 def __init__(self, browser_backend, window_handle):
11 self._browser_backend = browser_backend

Completed in 784 milliseconds

1 2