/external/chromium-trace/catapult/tracing/test_data/ |
battor.zip | |
/external/chromium-trace/catapult/systrace/bin/ |
OWNERS | 1 per-file adb_profile_chrome=file://systrace/profile_chrome/OWNERS 2 per-file adb_profile_chrome_startup=file://systrace/profile_chrome/OWNERS 4 per-file systrace=file://systrace/systrace/OWNERS
|
systrace | 13 from systrace import systrace namespace 16 sys.exit(systrace.main())
|
run_tests | 7 """Runs the unit test suite for systrace.""" 17 systrace_package_path = os.path.join(_SYSTRACE_DIR, 'systrace')
|
adb_profile_chrome_startup | 33 'Android systrace. See http://dev.chromium.org' 83 # Enable the systrace and chrome controller. The systrace controller should go 84 # first because otherwise the resulting traces miss early systrace data.
|
/external/chromium-trace/catapult/systrace/ |
README.md | 5 Systrace 8 Systrace provides command-line tools to analyze the performance of your 10 [Android Systrace](http://developer.android.com/tools/help/systrace.html).
|
/external/chromium-trace/catapult/systrace/systrace/ |
README.md | 5 Systrace 8 Systrace relies on 10 to visualize the traces. The development of Trace-Viewer and Systrace is 14 * Systrace visualizes the trace result based on systrace_trace_viewer.html. 15 * Systrace will auto update systrace_trace_viewer.html if
|
systrace_agent.py | 7 """The base class for systrace agents. 9 A systrace agent contains the command-line options and trace categories to 10 capture. Each systrace agent has its own tracing implementation. 14 """Initialize a systrace agent.
|
/external/chromium-trace/ |
systrace.py | 12 sys.stderr.write('Systrace does not support Python %d.%d. ' 17 os.path.join(os.path.dirname(__file__), 'catapult', 'systrace')) 20 from systrace import systrace namespace 23 sys.exit(systrace.main())
|
README | 0 Systrace is now part of Catapult project. The catapult directory contains code 13 trace HTML file that systrace.py generates.
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
flags.py | 8 systrace_opts = optparse.OptionGroup(parser, 'Systrace tracing options') 9 systrace_opts.add_option('-s', '--systrace', help='Capture a systrace with ' 10 'the chosen comma-delimited systrace categories. You' 11 ' can also capture a combined Chrome + systrace by ' 13 'see the available categories. Systrace is disabled '
|
systrace_controller.py | 21 # Interval in seconds for sampling systrace data. 38 return 'systrace' 55 output_name = 'systrace-%s' % util.GetTraceTimestamp() 104 raise RuntimeError('Systrace start marker not found')
|
/external/chromium-trace/catapult/systrace/systrace/agents/ |
ftrace_agent_unittest.py | 9 from systrace import systrace namespace 10 from systrace.agents import ftrace_agent 12 SYSTRACE_HOST_CMD_DEFAULT = ['./systrace.py', '--target=linux'] 49 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 56 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 66 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 78 options, categories = systrace.parse_options(systrace_cmd) 112 options, categories = systrace.parse_options(systrace_cmd) 128 options, categories = systrace.parse_options(systrace_cmd [all...] |
atrace_agent_unittest.py | 11 from systrace import systrace namespace 12 from systrace.agents import atrace_agent 19 SYSTRACE_CMD = ['./systrace.py', '--time', '10', '-o', 'out.html', '-e', 23 SYSTRACE_LIST_CATEGORIES_CMD = ['./systrace.py', '-e', DEVICE_SERIAL, '-l'] 32 SYSTRACE_BOOT_CMD = (['./systrace.py', '--boot', '-e', DEVICE_SERIAL] + 59 options, categories = systrace.parse_options(SYSTRACE_CMD) 104 options, categories = systrace.parse_options(STOP_FIX_UPS) 111 options, categories = systrace.parse_options(SYSTRACE_LIST_CATEGORIES_CMD) 118 options, categories = systrace.parse_options(['systrace.py' [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
android_systrace_profiler.py | 25 """Collects a Systrace on Android.""" 33 self._systrace_output_path = output_path + '.systrace' 41 command = ['python', os.path.join(util.GetCatapultDir(), 'systrace', 'bin', 44 self._systrace_output_path, '--json', '--systrace', 53 return 'android-systrace' 73 z.write(self._systrace_output_path, 'systrace') 76 print 'Systrace saved as %s' % self._output_path
|
android_systrace_profiler_unittest.py | 23 os.path.join(out_dir, 'systrace'), 30 self.assertIn('sched_wakeup', z.open('systrace').read())
|
/system/extras/ANRdaemon/ |
README | 16 The compressed trace file can be parsed using systrace: 17 $ systrace.py --from-file=<path to compressed trace file> 19 Known issue: in the systrace output, anrdaemon will show up when the trace is 26 file is parsed by systrace.py, the daemon process is shown as running for the 27 whole 20secs (because from systrace's view, the two 20 sec apart sched trace
|
/external/chromium-trace/catapult/tracing/ |
bower.json | 9 "description": "TraceViewer for chrome://tracing and Android Systrace",
|
package.json | 4 "description": "Trace-Viewer is the javascript frontend for Chrome about:tracing and Android systrace.",
|
/frameworks/opt/bitmap/src/com/android/bitmap/util/ |
Trace.java | 27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions. 29 * @param tag systrace tag to use 40 * Ends systrace tracing for the most recently begun section. No-op on unsupported platform
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/ |
Trace.java | 27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions. 29 * @param tag systrace tag to use 40 * Ends systrace tracing for the most recently begun section. No-op on unsupported platform
|
/frameworks/support/v4/java/android/support/v4/os/ |
TraceCompat.java | 20 * collected and visualized using the Systrace tool. 25 * <p>For information about using the Systrace tool, read <a 26 * href="{@docRoot}tools/debugging/systrace.html">Analyzing Display and Performance 27 * with Systrace</a>.
|
/external/chromium-trace/catapult/tracing/tracing/extras/importer/linux_perf/ |
ftrace_importer_test.html | 49 var x = p(' systrace.sh-5441 [001] d... 1031.091570: ' + 52 assert.equal(x.threadName, 'systrace.sh'); 62 var x = p(' systrace.sh-5441 [001] .N.. 1031.091570: ' + 65 assert.equal(x.threadName, 'systrace.sh'); 72 var x = p(' systrace.sh-5441 [001] .n.. 1031.091570: ' + 75 assert.equal(x.threadName, 'systrace.sh'); 77 var x = p(' systrace.sh-5441 [001] .p.. 1031.091570: ' + 80 assert.equal(x.threadName, 'systrace.sh'); 85 var x = p(' systrace.sh-5441 (54321) [001] d... 1031.091570: ' + 88 assert.equal(x.threadName, 'systrace.sh') [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/ |
ISystraceOptions.java | 17 package com.android.ide.eclipse.ddms.systrace;
|
ISystraceOptionsDialog.java | 17 package com.android.ide.eclipse.ddms.systrace;
|