Home | History | Annotate | Download | only in android

Lines Matching refs:host_file

23 def _CaptureScreenshot(adb, host_file):
24 host_file = adb.TakeScreenshot(host_file)
25 _PrintMessage('Screenshot written to %s' % os.path.abspath(host_file))
28 def _CaptureVideo(adb, host_file, options):
31 host_file,
41 host_file = recorder.Pull()
42 _PrintMessage('Video written to %s' % os.path.abspath(host_file))
79 host_file = args[0] if args else options.file
83 _CaptureVideo(adb, host_file, options)
85 _CaptureScreenshot(adb, host_file)