Home | History | Annotate | Download | only in executors

Lines Matching defs:device

40   protected Device device;
45 Device device, boolean needsCleanCodeCache, boolean isBisectable) {
57 this.device = device;
78 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command,
108 commandBuilder.append("--boot-image=").append(device.getAndroidProductOut());
109 if (device.noBootImageAvailable()) {
116 commandBuilder.append("--android-root=").append(device.getAndroidHostOut()).append(" ");
120 ExecutionResult verificationResult = device.executeCommand(commandBuilder.toString(), true,
149 device.executeCommand("rm output.oat", false);
155 * Called by the Fuzzer to upload the program to the target device.
159 device.pushProgramToDevice(programName, testLocation);
163 // Get the device to clean the code cache
164 device.cleanCodeCache(architecture, testLocation, programName);
199 if (!device.isHost()) {
200 commandBuilder.append(" --device");
201 if (device.isUsingSpecificDevice()) {
202 commandBuilder.append(" --specific-device=").append(device.getName());
205 return device.executeCommand(commandBuilder.toString(), true, outputConsumer, errorConsumer);
242 device.resetProgramPushed();