Home | History | Annotate | Download | only in targetprep

Lines Matching defs:device

21 import com.android.tradefed.device.DeviceNotAvailableException;
22 import com.android.tradefed.device.ITestDevice;
30 * that the device is rebooted before actual test execution, so the system partition remains
42 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError,
45 device.remountSystemWritable();
48 device.executeShellCommand(String.format("rm /system/app/%s", file));
50 device.executeShellCommand(String.format("rm /system/priv-app/%s", file));
53 // Reboot the device to put /system back into read-only
54 device.reboot();
55 device.waitForDeviceAvailable();