Home | History | Annotate | Download | only in cros

Lines Matching refs:synchronous

760         """Call the dev server's download method with synchronous=True."""
771 # Synchronous case requires a call to finish download.
773 self.dev_server.trigger_download(name, synchronous=True)
778 """Call the dev server's download method with synchronous=False."""
788 self.dev_server.trigger_download(name, synchronous=False)
853 # Synchronous case requires a call to finish download.
1231 def _testSuccessfulTriggerDownloadAndroid(self, synchronous=True):
1232 """Call the dev server's download method with given synchronous
1235 @param synchronous: True to call the download method synchronously.
1257 if synchronous:
1266 # Synchronous case requires a call to finish download.
1269 synchronous=synchronous, target=target, build_id=build_id,
1275 """Call the dev server's download method with synchronous=True."""
1276 self._testSuccessfulTriggerDownloadAndroid(synchronous=True)
1280 """Call the dev server's download method with synchronous=False."""
1281 self._testSuccessfulTriggerDownloadAndroid(synchronous=False)