(self, host_output_path, device_output_path=None, callback=None)
| 476 | ) |
| 477 | |
| 478 | def pull(self, host_output_path, device_output_path=None, callback=None): |
| 479 | if device_output_path is None: |
| 480 | device_output_path = self.output_folder |
| 481 | self._adb(["pull", "-a", device_output_path, host_output_path]) |
| 482 | if callback: |
| 483 | callback() |
| 484 | |
| 485 | def pull_etdump(self, output_path, callback=None): |
| 486 | self._adb(["pull", self.etdump_path, output_path]) |