Home
last modified time | relevance | path

Searched refs:remote_path (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/startop/scripts/iorap/
H A Dcommon96 local remote_path="$(_iorapd_path_to_data_file "$package" "$activity" "perfetto_trace.pb")"
98 verbose_print "iorapd_perfetto_wait_for_app_trace on file '$remote_path'"
101 local pattern="Perfetto TraceBuffer saved to file: $remote_path"
110 local remote_path="$(_iorapd_path_to_data_file "$package" "$activity" "perfetto_trace.pb")"
112 verbose_print 'iorapd-perfetto: purge app trace in ' "$remote_path"
113 adb shell "[[ -f '$remote_path' ]] && rm -f '$remote_path' || exit 0"
229 local remote_path="$(_iorapd_path_to_data_file "$package" "$activity" "compiled_trace.pb")"
231 adb shell "[[ -f '$remote_path' ]] && rm -f '$remote_path' || exit 0"
248 local remote_path="$(_iorapd_path_to_data_file "$package" "$activity" "compiled_trace.pb")"
251 local pattern="Description = $remote_path"
/aosp12/packages/modules/adb/
H A Dbenchmark_device.py100 remote_path = "/dev/null"
109 device.push(local=local_path, remote=remote_path)
119 remote_path = "/data/local/tmp/adb_benchmark_temp"
122 device.shell(["dd", "if=/dev/zero", "of=" + remote_path, "bs=1m",
127 device.pull(remote=remote_path, local=local_path)
H A Dtest_device.py775 def _verify_remote(self, checksum, remote_path): argument
777 remote_path])[0].split()
817 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
844 test_empty_cmd = ["[", "-d", remote_path, "]"]
953 self.device.shell(['rm', '-rf', remote_path])
955 remote_path += '/filename'
969 self.device.shell(['rm', '-rf', remote_path])
1358 remote_path = u'/data/local/tmp/adb-test-{}'.format(name)
1363 self.device.push(tf.name, remote_path)
1370 self.assertEqual(remote_path, output)
[all …]
/aosp12/frameworks/base/libs/hwui/tests/scripts/
H A Dskp-capture.sh37 remote_path="/data/data/${package}/cache/${filename}"
56 adb shell "setprop '${filename_key}' '${remote_path}'"
/aosp12/packages/modules/adb/client/
H A Dfile_sync_client.cpp68 static void ensure_trailing_separators(std::string& local_path, std::string& remote_path) { in ensure_trailing_separators() argument
72 if (remote_path.back() != '/') { in ensure_trailing_separators()
73 remote_path.push_back('/'); in ensure_trailing_separators()
94 const std::string& remote_path, in copyinfo()
97 : lpath(local_path), rpath(remote_path), mode(mode) { in copyinfo()
/aosp12/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py298 def pull(self, remote_path, local_path): argument
299 self._call_adb(*["pull", remote_path, local_path])