HomeSort by relevance Sort by last modified time
    Searched refs:atrace (Results 1 - 19 of 19) sorted by null

  /external/drrickorang/LoopbackApp/app/src/main/res/raw/
loopback_listener 6 # Writes output of atrace and bugreport to files with supplied prefix
17 # Exit atrace, remove signal file, and exit
21 atrace --async_stop -z > /dev/null
28 atrace --async_start -z -c -b $BUFFER_KB $TRACE_CATEGORIES
53 atrace --async_dump -z -c -b $BUFFER_KB $TRACE_CATEGORIES > $filename
  /packages/apps/Traceur/src/com/google/android/traceur/
AtraceUtils.java 41 * Utility functions for calling atrace
56 String cmd = "atrace --async_start -c -b " + bufferSizeKb + " " + appParameter + tags;
58 Log.v(TAG, "Starting async atrace: " + cmd);
60 Process atrace = exec(cmd); local
61 if (atrace.waitFor() != 0) {
62 Log.e(TAG, "atraceStart failed with: " + atrace.exitValue());
72 String cmd = "atrace --async_stop > /dev/null";
74 Log.v(TAG, "Stopping async atrace: " + cmd);
76 Process atrace = exec(cmd); local
78 if (atrace.waitFor() != 0)
90 Process atrace = exec(cmd); local
120 Process atrace = exec(cmd); local
    [all...]
  /system/core/adb/
trace.sh 8 adb shell "sleep 1; atrace -b 65536 --async_start adb sched power freq idle disk mmc load"
15 adb shell atrace --async_stop -z > ${TRACE_TEMP}
  /system/extras/tests/workloads/
defs.sh 153 # extract timestamp from atrace log entry
275 # look for any reclaim events in atrace output
289 # Called at beginning of loop. Turn on instramentation like atrace
300 vout ${ADB}atrace -b 32768 --async_start $tracecategories
301 ${ADB}atrace -b 32768 --async_start $tracecategories >> $output
310 vout ${ADB}atrace --async_stop
311 ${ADB}atrace --async_stop > /dev/null
330 UNCOMPRESS=$CMDDIR/atrace-uncompress.py
333 ${ADB}atrace -z -b 32768 --async_dump >> $tmpTrace
337 ${ADB}atrace -b 32768 --async_dump > $traceou
    [all...]
chromefling.sh 101 ${ADB}atrace --async_start -z -c -b 16000 freq gfx view idle sched
114 ${ADB}atrace --async_dump -z -c -b 16000 freq gfx view idle sched > trace.${cur}.out
recentfling.sh 107 ${ADB}atrace --async_start -z -c -b 16000 freq gfx view idle sched
120 ${ADB}atrace --async_dump -z -c -b 16000 freq gfx view idle sched > trace.${cur}.out
  /build/make/target/product/
core_base.mk 29 atrace \
embedded.mk 28 atrace \
116 debug.atrace.tags.enableflags=0
  /cts/hostsidetests/atrace/
Android.mk 26 LOCAL_CTS_TEST_PACKAGE := android.host.atrace
  /packages/services/Car/car_product/build/
car_base.mk 47 atrace \
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
AtraceCollectorTest.java 57 private static final String M_DEFAULT_LOG_PATH = "/data/local/tmp/atrace.atr";
91 * Test {@link AtraceCollector#onTestStart(DeviceMetricData)} to see if atrace collection
95 * Expect that atrace was started in async mode with compression on.
101 EasyMock.eq("atrace --async_start -z " + M_CATEGORIES),
115 * Test {@link AtraceCollector#onTestStart(DeviceMetricData)} to see if atrace collection
118 * <p>Expect that atrace was started in async mode with compression off.
123 EasyMock.eq("atrace --async_start " + M_CATEGORIES),
138 * Test {@link AtraceCollector#onTestStart(DeviceMetricData)} to see if atrace collection
143 * when starting atrace.
149 EasyMock.eq("atrace --async_start -z " + M_CATEGORIES)
207 AtraceCollector atrace = new AtraceCollector(); local
365 AtraceCollector atrace = new AtraceCollector(); local
    [all...]
  /external/perfetto/src/ftrace_reader/
ftrace_config_muxer_unittest.cc 202 TEST(FtraceConfigMuxerTest, Atrace) {
205 MockRunAtrace atrace; local
214 EXPECT_CALL(atrace,
216 {"atrace", "--async_start", "--only_userspace", "sched"})))
227 EXPECT_CALL(atrace, RunAtrace(ElementsAreArray(
228 {"atrace", "--async_stop", "--only_userspace"})))
  /system/extras/pagecache/
pagecache.py 391 trace_cmd = AdbUtils.construct_adb_shell_command(['atrace', '--stream', 'pagecache'],
395 atrace = subprocess.Popen(trace_cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
401 read_and_parse_trace_data_live(atrace.stdout, atrace.stderr, pagecache_stats, options.app_name)
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 17 package android.atrace.cts;
39 * Test to check that atrace is usable, to enable usage of systrace.
154 * Tests that atrace exists and is runnable with no args
157 String output = getDevice().executeShellCommand("atrace");
169 * Tests the output of "atrace --list_categories" to ensure required categories exist.
172 String output = getDevice().executeShellCommand("atrace --list_categories");
190 fail("Expected categories missing from atrace");
195 * Tests that atrace captures app launch, including app level tracing
208 String.format("failed to install atrace test app. Reason: %s", installResult),
214 getDevice().executeShellCommand("atrace --async_stop " + atraceArgs)
    [all...]
  /frameworks/native/cmds/atrace/
atrace.rc 128 on property:persist.debug.atrace.boottrace=1
131 # Run atrace with the categories written in a file
132 service boottrace /system/bin/atrace --async_start -f /data/misc/boottrace/categories
  /system/sepolicy/prebuilts/api/27.0/private/
file_contexts 178 /system/bin/atrace u:object_r:atrace_exec:s0
  /system/sepolicy/prebuilts/api/26.0/private/
file_contexts 176 /system/bin/atrace u:object_r:atrace_exec:s0
  /system/sepolicy/prebuilts/api/28.0/private/
file_contexts 187 /system/bin/atrace u:object_r:atrace_exec:s0
  /system/sepolicy/private/
file_contexts 187 /system/bin/atrace u:object_r:atrace_exec:s0

Completed in 316 milliseconds