OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputFileList
(Results
1 - 3
of
3
) sorted by null
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
FuzzerMultiple.java
35
String inputFile = Options.
inputFileList
.get(0);
36
if (Options.
inputFileList
.size() > 1) {
37
int nextIndex = iterations % Options.
inputFileList
.size();
38
inputFile = Options.
inputFileList
.get(nextIndex);
FuzzerSingle.java
32
return Options.
inputFileList
.get(0);
/art/tools/dexfuzz/src/dexfuzz/
Options.java
41
public static final List<String>
inputFileList
= new ArrayList<String>();
225
inputFileList
.add(value);
234
inputFileList
.add(inputName);
340
if (
inputFileList
.isEmpty()) {
344
inputFileList
.add("fuzzingseed.dex");
384
if (repeat == 1 &&
inputFileList
.size() > 1) {
Completed in 182 milliseconds