(self, output_path, callback=None)
| 483 | callback() |
| 484 | |
| 485 | def pull_etdump(self, output_path, callback=None): |
| 486 | self._adb(["pull", self.etdump_path, output_path]) |
| 487 | if callback: |
| 488 | callback() |
| 489 | |
| 490 | def pull_debug_output(self, etdump_path, debug_ouput_path, callback=None): |
| 491 | self._adb(["pull", self.etdump_path, etdump_path]) |
no test coverage detected