Home
last modified time | relevance | path

Searched refs:executor (Results 1 – 7 of 7) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/fuzzers/
DFuzzer.java108 for (Executor executor : executors) { in shutdown()
109 executor.shutdown(); in shutdown()
230 for (Executor executor : executors) { in execute()
231 executor.reset(); in execute()
232 executor.prepareProgramForExecution(programName); in execute()
233 executor.execute(programName); in execute()
234 if (!executor.didTargetVerify()) { in execute()
312 for (Executor executor : executors) { in analyseResults()
313 if (executor.getResult().isTimeout()) { in analyseResults()
314 timedOut.add(executor); in analyseResults()
[all …]
/art/tools/dexfuzz/src/dexfuzz/listeners/
DLogFileListener.java116 for (Executor executor : timedOut) { in handleTimeouts()
117 write(" " + executor.getName()); in handleTimeouts()
121 for (Executor executor : didNotTimeOut) { in handleTimeouts()
122 write(" " + executor.getName()); in handleTimeouts()
134 for (Executor executor : executors) { in handleDivergences()
135 write(" " + executor.getName()); in handleDivergences()
179 public void handleDumpOutput(String outputLine, Executor executor) { in handleDumpOutput() argument
180 write(executor.getName() + " OUTPUT:"); in handleDumpOutput()
DConsoleLoggerListener.java92 for (Executor executor : executors) { in handleDivergences()
93 logToConsole(" " + executor.getName()); in handleDivergences()
125 public void handleDumpOutput(String outputLine, Executor executor) { in handleDumpOutput() argument
126 logToConsole(executor.getName() + " OUTPUT: " + outputLine); in handleDumpOutput()
DBisectionSearchListener.java92 for (Executor executor : executors) { in handleDivergences()
93 if (executor.isBisectable()) { in handleDivergences()
95 ExecutionResult result = executor.runBisectionSearch(fuzzedFile, in handleDivergences()
DMultiplexerListener.java130 public void handleDumpOutput(String outputLine, Executor executor) { in handleDumpOutput() argument
132 listener.handleDumpOutput(outputLine, executor); in handleDumpOutput()
DBaseListener.java56 public void handleDumpOutput(String outputLine, Executor executor) { } in handleDumpOutput() argument
/art/test/testrunner/
Dtestrunner.py397 def start_combination(executor, config_tuple, global_options, address_size): argument
520 return executor.submit(run_test, command, test, variant_set, test_name)
526 with concurrent.futures.ThreadPoolExecutor(max_workers=n_thread) as executor:
531 test_futures.append(start_combination(executor, config_tuple, options_all, address_size))
535 start_combination(executor, config_tuple, options_all, "")) # no address size
546 executor.shutdown(True)