Home
last modified time | relevance | path

Searched refs:device (Results 1 – 25 of 31) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/executors/
DExecutor.java40 protected Device device; field in Executor
45 Device device, boolean needsCleanCodeCache, boolean isBisectable) { in Executor() argument
57 this.device = device; in Executor()
78 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command, in executeCommandWithTimeout()
108 commandBuilder.append("--boot-image=").append(device.getAndroidProductOut()); in verifyOnHost()
109 if (device.noBootImageAvailable()) { in verifyOnHost()
116 commandBuilder.append("--android-root=").append(device.getAndroidHostOut()).append(" "); in verifyOnHost()
120 ExecutionResult verificationResult = device.executeCommand(commandBuilder.toString(), true, in verifyOnHost()
149 device.executeCommand("rm output.oat", false); in verifyOnHost()
159 device.pushProgramToDevice(programName, testLocation); in prepareProgramForExecution()
[all …]
DArmInterpreterExecutor.java23 public ArmInterpreterExecutor(BaseListener listener, Device device) { in ArmInterpreterExecutor() argument
24 super("ARM Interpreter", 30, listener, Architecture.ARM, device, in ArmInterpreterExecutor()
32 if (device.noBootImageAvailable()) { in constructCommand()
DArm64InterpreterExecutor.java23 public Arm64InterpreterExecutor(BaseListener listener, Device device) { in Arm64InterpreterExecutor() argument
24 super("ARM64 Interpreter", 30, listener, Architecture.ARM64, device, in Arm64InterpreterExecutor()
32 if (device.noBootImageAvailable()) { in constructCommand()
DArm64OptimizingBackendExecutor.java23 public Arm64OptimizingBackendExecutor(BaseListener listener, Device device) { in Arm64OptimizingBackendExecutor() argument
24 super("ARM64 Optimizing Backend", 5, listener, Architecture.ARM64, device, in Arm64OptimizingBackendExecutor()
35 if (device.noBootImageAvailable()) { in constructCommand()
DArmOptimizingBackendExecutor.java23 public ArmOptimizingBackendExecutor(BaseListener listener, Device device) { in ArmOptimizingBackendExecutor() argument
24 super("ARM Optimizing Backend", 5, listener, Architecture.ARM, device, in ArmOptimizingBackendExecutor()
35 if (device.noBootImageAvailable()) { in constructCommand()
DX86InterpreterExecutor.java24 public X86InterpreterExecutor(BaseListener listener, Device device) { in X86InterpreterExecutor() argument
25 super("x86 Interpreter", 30, listener, Architecture.X86, device, in X86InterpreterExecutor()
34 commandBuilder.append(device.getHostExecutionFlags()).append(" "); in constructCommand()
DX86OptimizingBackendExecutor.java24 public X86OptimizingBackendExecutor(BaseListener listener, Device device) { in X86OptimizingBackendExecutor() argument
25 super("x86 Optimizing Backend", 5, listener, Architecture.X86, device, in X86OptimizingBackendExecutor()
37 commandBuilder.append(device.getHostExecutionFlags()).append(" "); in constructCommand()
DX86_64InterpreterExecutor.java23 public X86_64InterpreterExecutor(BaseListener listener, Device device) { in X86_64InterpreterExecutor() argument
24 super("x86_64 Interpreter", 30, listener, Architecture.X86_64, device, in X86_64InterpreterExecutor()
DMips64InterpreterExecutor.java23 public Mips64InterpreterExecutor(BaseListener listener, Device device) { in Mips64InterpreterExecutor() argument
24 super("MIPS64 Interpreter", 30, listener, Architecture.MIPS64, device, in Mips64InterpreterExecutor()
DMipsInterpreterExecutor.java23 public MipsInterpreterExecutor(BaseListener listener, Device device) { in MipsInterpreterExecutor() argument
24 super("MIPS Interpreter", 30, listener, Architecture.MIPS, device, in MipsInterpreterExecutor()
DMipsOptimizingBackendExecutor.java23 public MipsOptimizingBackendExecutor(BaseListener listener, Device device) { in MipsOptimizingBackendExecutor() argument
24 super("MIPS Optimizing Backend", 5, listener, Architecture.MIPS, device, in MipsOptimizingBackendExecutor()
DMips64OptimizingBackendExecutor.java23 public Mips64OptimizingBackendExecutor(BaseListener listener, Device device) { in Mips64OptimizingBackendExecutor() argument
24 super("MIPS64 Optimizing Backend", 5, listener, Architecture.MIPS64, device, in Mips64OptimizingBackendExecutor()
DX86_64OptimizingBackendExecutor.java23 public X86_64OptimizingBackendExecutor(BaseListener listener, Device device) { in X86_64OptimizingBackendExecutor() argument
24 super("x86_64 Optimizing Backend", 5, listener, Architecture.X86_64, device, in X86_64OptimizingBackendExecutor()
/art/tools/
Dlibcore_failures.txt20 modes: [device],
26 modes: [device],
33 777 all directories on path to socket (on device without su).",
35 modes: [device],
48 description: "Issue with incorrect device time (1970)",
50 modes: [device],
57 description: "Issue with incorrect device time (1970). Test assumes that DateTime.now()
60 modes: [device],
66 modes: [device],
83 modes: [device],
[all …]
Dsetup-buildbot-device.sh23 adb wait-for-device
83 adb wait-for-device root
Dlibcore_gcstress_failures.txt10 modes: [device],
Drun-libjdwp-tests.sh61 args+=(--mode=device)
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
DFuzzer.java118 private void addExecutorsForArchitecture(Device device, Class<? extends Executor> optimizing, in addExecutorsForArchitecture() argument
128 executors.add(constructor.newInstance(listener, device)); in addExecutorsForArchitecture()
133 executors.add(constructor.newInstance(listener, device)); in addExecutorsForArchitecture()
149 Device device = null; in addExecutors() local
151 device = new Device(); in addExecutors()
153 device = new Device(Options.deviceName, Options.noBootImage); in addExecutors()
157 addExecutorsForArchitecture(device, Arm64OptimizingBackendExecutor.class, in addExecutors()
162 addExecutorsForArchitecture(device, ArmOptimizingBackendExecutor.class, in addExecutors()
167 addExecutorsForArchitecture(device, X86_64OptimizingBackendExecutor.class, in addExecutors()
172 addExecutorsForArchitecture(device, X86OptimizingBackendExecutor.class, in addExecutors()
[all …]
/art/tools/bisection_search/
DREADME.md29 If used in device mode, the command has to exec a dalvikvm instance. Bisection
40 [--64] [--device] [--device-serial DEVICE_SERIAL]
62 --device run on device
63 --device-serial DEVICE_SERIAL device serial number, implies --device
/art/tools/dexfuzz/
DREADME18 ADB-connected Android device, and it will fuzz these seed files, and execute the
19 resulting new tests on the Android device.
24 DexFuzz can run its test programs on either an ADB-connected device, or a host-build of
27 Execution on an ADB-connected device
31 2. Make sure you have an Android device connected via ADB, that is capable of
37 5. Create a directory on your device that mutated test files can be pushed to and
40 your device using "adb devices -l".
58 Note that if you wanted to test both ARM and ARM64 on an ARM64 device, you can use
67 Add in --device=<device name, e.g. device:generic> if you want to specify a device.
68 Add in --execute-dir=<dir on device> if you want to specify an execution directory.
/art/tools/jfuzz/
Drun_jfuzz_test.py46 def GetExecutionModeRunner(dexer, debug_info, device, mode): argument
66 return TestRunnerArtIntOnTarget(dexer, debug_info, device)
68 return TestRunnerArtOptOnTarget(dexer, debug_info, device)
261 def __init__(self, dexer, debug_info, device, extra_args=None): argument
271 self._test_env = DeviceTestEnv('jfuzz_', specific_device=device)
275 self._device = device
304 def __init__(self, dexer, debug_info, device): argument
312 super().__init__(dexer, debug_info, device, ['-Xint'])
329 def __init__(self, dexer, debug_info, device): argument
337 super().__init__(dexer, debug_info, device, None)
[all …]
DREADME.md48 [--device=DEVICE]
59 --device : target device serial number (passed to adb -s)
91 [--device=DEVICE]
99 --device : target device serial number (passed to adb -s)
Drun_dex_fuzz_test.py44 def __init__(self, num_tests, num_inputs, device, dexer, debug_info): argument
56 self._device = device
198 args.device,
/art/test/
DREADME.md20 tests can be run on the build host, on a USB-attached device, or using
35 ## Running all tests on the target device
47 ## Running all gtests on the target device
59 ## Running all run-tests on the target device
71 ## Running one run-test on the target device
/art/
DAndroid.mk45 adb wait-for-device remount
103 adb wait-for-device remount && \
108 adb wait-for-device root && \
109 adb wait-for-device remount)))
124 adb wait-for-device push $(PRODUCT_OUT)/system $(ART_TEST_ANDROID_ROOT)
507 adb wait-for-device shell stop
514 adb wait-for-device shell stop
521 adb wait-for-device shell stop
528 adb wait-for-device shell stop

12