Lines Matching refs:output
156 output = self.SendShellCommand("ls %s" % src)
159 if error in output:
165 output = self.SendCommand("root")
166 if "adbd is already running as root" in output:
168 elif "restarting adbd as root" in output:
174 logger.Log("Unrecognized output from adb root: %s" % output)
362 output = self.SendShellCommand(command)
363 return output.startswith("instrumentation:")
425 output = self.SendShellCommand(command, retry_count=1)
426 if ((not invert and expected in output)
427 or (invert and expected not in output)):
459 output = self.SendShellCommand("getprop dev.bootcomplete", retry_count=1)
460 output = output.strip()
461 if output == "1":
484 output = ""
494 output = self.SendCommand("sync", retry_count=retry_count)
497 output = e.msg
498 if "Read-only file system" in output:
499 logger.SilentLog(output)
502 output = self.SendCommand("sync", retry_count=retry_count)
503 elif "No space left on device" in output:
504 logger.SilentLog(output)
507 output = self.SendCommand("sync", retry_count=retry_count)
512 logger.SilentLog(output)
522 return output