Searched refs:AdbCall (Results 1 – 2 of 2) sorted by relevance
/external/perfetto/tools/ |
D | load_tool | 101 def AdbCall(*args): function 175 AdbCall('shell', 'stop', 'traced') 176 AdbCall('shell', 'stop', 'traced_probes') 177 AdbCall('shell', 'start', 'traced') 178 AdbCall('shell', 'start', 'traced_probes') 179 AdbCall('shell', 'sleep', '5') 180 traced_pid = AdbCall('shell', 'pidof', 'traced') 181 probes_pid = AdbCall('shell', 'pidof', 'traced_probes') 194 AdbCall('wait-for-device') 195 AdbCall('root') [all …]
|
D | run_android_test | 84 def AdbCall(*args): function 141 AdbCall('wait-for-device') 143 AdbCall('root') 144 AdbCall('wait-for-device') 148 AdbCall('shell', 'rm -rf "%s"' % target_dir) 149 AdbCall('shell', 'mkdir -p "%s"' % target_dir) 154 AdbCall('shell', 'test -d "%s" || mkdir -p "%s"' % (2 * (trace_dir,))) 155 AdbCall('shell', 'rm -rf "%s/*"; ' % trace_dir) 156 AdbCall('shell', 'mkdir -p /data/nativetest') 157 AdbCall('shell', 'echo 0 > /d/tracing/tracing_on') [all …]
|