Lines Matching refs:device
83 def printAdbResult(device, out, err):
84 print "device: " + device
97 print "Found device: " + deviceSerial
98 device = androidDevice(deviceSerial)
100 outPath = outPath + "/%d" % (device.getSdkLevel())
101 density = device.getDensity()
107 device.uninstallApk("android.theme.app")
109 (out, err, success) = device.installApk(themeApkPath)
117 (out, err) = device.runInstrumentationTest("android.theme.app/android.support.test.runner.AndroidJUnitRunner")
121 (out, err) = device.runInstrumentationTest("android.theme.app/android.test.InstrumentationTestRunner")
131 while device.isProcessAlive("android.theme.app"):
142 device.runAdbCommand("pull " + OUT_FILE + " " + resDir + ".zip")
143 device.runAdbCommand("shell rm -rf " + OUT_FILE)
161 for device in devices:
162 configQ.put(device)