Lines Matching full:run
47 command_output = subprocess.run(["adb", "devices"], capture_output=True)
112 subprocess.run(["adb", "-s", self.serial, "root"])
121 subprocess.run(["adb", "-s", self.serial, "shell", "rm", "-f", file_path])
140 subprocess.run(["adb", "-s", self.serial, "pull", file_path, host_file])
143 command_output = subprocess.run(["adb", "-s", self.serial, "shell", "pm",
160 command_output = subprocess.run(["adb", "-s", self.serial, "shell", "am",
165 subprocess.run(["adb", "-s", self.serial, "shell", "am", "switch-user",
169 subprocess.run(("adb -s %s shell 'cat > %s %s'"
173 subprocess.run(["adb", "-s", self.serial, "shell", "setprop", prop, value])
176 subprocess.run(["adb", "-s", self.serial, "shell", "setprop", prop, "\"\""])
179 subprocess.run(["adb", "-s", self.serial, "reboot"])
188 subprocess.run(["adb", "-s", self.serial, "wait-for-device"])
191 command_output = subprocess.run(["adb", "-s", self.serial, "shell",
204 return [package.removeprefix("package:") for package in subprocess.run(
209 return subprocess.run("adb -s %s shell pidof %s" % (self.serial, package),
217 if subprocess.run(
229 subprocess.run(["adb", "-s", self.serial, "shell", "kill", "-9", pid])
232 subprocess.run(["adb", "-s", self.serial, "shell", "am", "force-stop",
236 return subprocess.run(
249 output = subprocess.run(["adb", "-s", self.serial, "shell",
277 "Run adb shell simpleperf list to"