Searched defs:architecture (Results 1 - 3 of 3) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/executors/
H A DExecutor.java39 protected Architecture architecture; field in class:Executor
43 protected Executor(String name, int timeout, BaseListener listener, Architecture architecture, argument
55 this.architecture = architecture;
102 commandBuilder.append("--instruction-set=").append(architecture.asString());
164 device.cleanCodeCache(architecture, testLocation, programName);
175 * Fuzzer.checkForArchitectureSplit() will use this determine the architecture of the Executor.
178 return architecture;
H A DDevice.java234 private String getCacheLocation(Architecture architecture) { argument
237 cacheLocation = androidData + "/dalvik-cache/" + architecture.asString() + "/";
239 cacheLocation = "/data/dalvik-cache/" + architecture.asString() + "/";
249 public void cleanCodeCache(Architecture architecture, String testLocation, String programName) { argument
250 String command = "rm -f " + getCacheLocation(architecture)
/art/compiler/utils/
H A Dassembler_test_base.h42 AssemblerTestInfrastructure(std::string architecture, argument
50 architecture_string_(architecture),

Completed in 95 milliseconds