Lines Matching refs:output
102 output = device.shell_with_output(check_command)
103 if output == "":
106 print("thread info: %s" % output)
112 output = device.shell_with_output("getprop ro.hardware")
113 if output == "":
116 isemulator = re.findall(r"ranchu", output)
117 output = device.shell_with_output("ifconfig")
118 if output == "":
122 ipaddress = re.findall(r"\b10\.0\.2\.[0-9]{1,3}\b", output)
125 ipaddress = re.findall(ip_template, output)
134 output = device.shell_with_output("param get ohos.boot.hardware")
135 if output == "":
138 isemulator = re.findall('readonly', str(output))
139 output = device.shell_with_output("ifconfig waln0")
140 if output == "":
144 ipaddress = re.findall(r"\b10\.0\.2\.[0-9]{1,3}\b", output)
147 ipaddress = re.findall(ip_template, output)