Home
last modified time | relevance | path

Searched refs:host_path (Results 1 – 4 of 4) sorted by relevance

/tools/asuite/adevice/src/
Dcommands.rs15 Push { host_path: String },
53 AdbAction::Push { host_path } => add_cmd_and_paths("push", host_path), in command_args()
86 let host_path = in compose() localVariable
92 FileType::File => adb_cmd(AdbAction::Push { host_path }), in compose()
198 &AdbAction::Push { host_path: "local/host/path".to_string() }, in push_cmd_args()
243 &AdbAction::Push { host_path: "local/host/path with space".to_string() }, in cmds_on_files_spaces_utf8_chars_work()
Dadevice.rs498 fn is_apk_installed(host_path: &Path, installed_packages: &HashSet<String>) -> Result<bool> { in is_apk_installed()
499 let host_apk_path = host_path.as_os_str().to_str().unwrap(); in is_apk_installed()
/tools/test/mobly_extensions/tools/
Ddevice_flags.py121 host_path = os.path.join(
123 self._ad.adb.pull([device_path, host_path])
124 with open(host_path, 'rb') as f:
/tools/test/connectivity/acts/framework/acts/controllers/
Dandroid_device.py1181 def pull_files(self, device_paths, host_path=None): argument
1190 if not host_path:
1191 host_path = self.log_path
1194 (device_path, host_path))
1195 self.adb.pull("%s %s" % (device_path, host_path),