Lines Matching refs:out
181 out = adb.AdbProxy().devices()
182 return _parse_device_list(out, "device")
192 out = fastboot.FastbootProxy().devices()
193 return _parse_device_list(out, "fastboot")
202 out = adb.AdbProxy().devices()
203 return _parse_device_list(out, "unauthorized")
457 out = self.fastboot.getvar(_FASTBOOT_VAR_HAS_VBMETA).strip()
458 if ("%s: yes" % _FASTBOOT_VAR_HAS_VBMETA) in out:
472 out = self.fastboot.getvar("is-userspace").strip()
473 if ("is-userspace: yes") in out:
500 out = self.fastboot.getvar("product").strip()
503 lines = out.decode("utf-8").split('\n', 1)
577 out = self.adb.shell(cmd)
578 out = out.strip()
580 match = re.match(r"(\d+)\.(\d+)\.(\d+)", out)
582 asserts.fail("Failed to detect kernel version of device. out:%s", out)
612 out = self.getProp("ro.product.cpu.abi")
613 if not out:
616 cpu_abi = out.lower()
629 out = self.getProp("ro.product.cpu.abilist" + str(bitness))
630 return out.lower().split(",") if out else []
635 out = self.adb.shell('uname -m')
636 return "64" in out
646 out = self.adb.shell(total_memory_command)
647 value_unit = out.split(':')[-1].strip().split(' ')
650 logging.error('Cannot get memory information. %s', out)
1119 out = self.adb.shell("getprop %s" % name, timeout=timeout)
1120 return out.decode("utf-8").strip()
1370 out = self.adb.shell('%s | grep "S %s"' % (cmd, package_name))
1371 if package_name not in out:
1374 pid = int(out.split()[1])
1381 '\"%s\".\nError: %s', cmd, out, e)