(self, etdump_path, debug_ouput_path, callback=None)
| 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]) |
| 492 | self._adb(["pull", self.debug_output_path, debug_ouput_path]) |
| 493 | if callback: |
| 494 | callback() |
| 495 | |
| 496 | def pull_heap_output(self, src_file_path, dst_folder, callback=None): |
| 497 | self._adb(["pull", src_file_path, dst_folder]) |
no test coverage detected