HomeSort by relevance Sort by last modified time
    Searched refs:errorAndQuit (Results 1 - 25 of 26) sorted by null

1 2

  /art/tools/dexfuzz/src/dexfuzz/program/
MutationSerializer.java 55 Log.errorAndQuit("Could not read line during mutation loading.");
66 Log.errorAndQuit("Cannot find a mutator class called: " + mutatorClassName);
73 Log.errorAndQuit("Unable to instantiate " + mutatorClassName
76 Log.errorAndQuit("Unable to access methods in " + mutatorClassName + ".");
80 Log.errorAndQuit("Unable to get Mutation for Mutator: " + mutatorClassName);
IdCreator.java 56 Log.errorAndQuit("Did not create necessary return type before finding insertion "
61 Log.errorAndQuit("Did not create necessary parameter list before finding insertion "
92 Log.errorAndQuit("Did not create necessary class, name or proto strings before finding "
117 Log.errorAndQuit("Did not create necessary descriptor string before finding "
148 Log.errorAndQuit("Did not create necessary class, type or name strings before finding "
171 Log.errorAndQuit("Referenced too many methods for the DEX file.");
258 Log.errorAndQuit("Referenced too many classes for the DEX file.");
325 Log.errorAndQuit("Corrupted DEX file, len(StringIDs) != len(StringDatas)");
406 Log.errorAndQuit("Referenced too many fields for the DEX file.");
500 Log.errorAndQuit("Invalid signature: " + signature)
    [all...]
CodeTranslator.java 116 Log.errorAndQuit("Bad offset calculation in data-target insn");
123 Log.errorAndQuit("Bad offset calculation in branch insn");
160 Log.errorAndQuit(String.format("%s does not have expected location 0x%x",
274 Log.errorAndQuit(String.format(
279 Log.errorAndQuit(String.format(
294 Log.errorAndQuit(
308 Log.errorAndQuit(String.format(
397 Log.errorAndQuit("Bad offset calculation for data target in switch insn");
447 Log.errorAndQuit("Bad offset calculation for target in switch insn");
Program.java 329 Log.errorAndQuit("You've got an EncodedMethod that points to an Offsettable"
462 Log.errorAndQuit("Why do you have a null MutatableCode?");
474 Log.errorAndQuit("Why do you have a null MutatableCode?");
502 Log.errorAndQuit("IOException while writing mutations to disk...");
516 Log.errorAndQuit("IOException while loading mutations from disk...");
  /art/tools/dexfuzz/src/dexfuzz/executors/
Device.java 70 Log.errorAndQuit("Cannot run a fuzzed program if $" + key + " is not set!");
95 Log.errorAndQuit("Host core image not found at " + coreImage.getPath()
113 Log.errorAndQuit("Problem executing ADB - is it in your $PATH?");
116 Log.errorAndQuit("IOException when executing ADB, is it working?");
118 Log.errorAndQuit("InterruptedException when executing ADB, is it working?");
124 Log.errorAndQuit("Couldn't connect to specified ADB device: " + deviceName);
232 Log.errorAndQuit("ExecutionResult.execute() caught an IOException");
234 Log.errorAndQuit("ExecutionResult.execute() caught an InterruptedException");
286 Log.errorAndQuit("Could not ADB PUSH program to device.");
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DebugInfoItem.java 40 Log.errorAndQuit("Error reading debug_info_item. The last byte is not DBG_END_SEQUENCE.");
RawDexFile.java 150 Log.errorAndQuit("MapItem's size " + mapItem.size
159 Log.errorAndQuit("MapItem's size " + mapItem.size
168 Log.errorAndQuit("MapItem's size " + mapItem.size
177 Log.errorAndQuit("MapItem's size " + mapItem.size
186 Log.errorAndQuit("MapItem's size " + mapItem.size
195 Log.errorAndQuit("MapItem's size " + mapItem.size
209 Log.errorAndQuit("MapItem's size " + mapItem.size
218 Log.errorAndQuit("MapItem's size " + mapItem.size
228 Log.errorAndQuit("MapItem's size " + mapItem.size
238 Log.errorAndQuit("MapItem's size " + mapItem.siz
    [all...]
OffsetTracker.java 186 Log.errorAndQuit("Not all created Offsettable items have been added to the "
241 Log.errorAndQuit("Being asked to update dangling offsets but the "
277 Log.errorAndQuit("Being asked to go to the point before the MapList was written out,"
296 Log.errorAndQuit("Header " + offsetName + " offset not pointing at first element?");
358 Log.errorAndQuit("When calling updateMapListOffsets, could not find new "
424 Log.errorAndQuit("Could not find any StringDataItems to insert the type list before.");
445 Log.errorAndQuit("Could not find any MethodIdItems to insert the field before.");
459 Log.errorAndQuit("Could not find any object of class: " + item.getClass());
476 Log.errorAndQuit("Did not find specified 'after' object in offsettable table.");
EncodedMethod.java 34 Log.errorAndQuit("Sorry, DEX files with native methods are not supported yet.");
HeaderItem.java 81 Log.errorAndQuit("Invalid header size in header.");
84 Log.errorAndQuit("Read a different amount than expected in header: "
CodeItem.java 200 Log.errorAndQuit("Unexpected IndexUpdateKind requested "
Instruction.java 123 Log.errorAndQuit("Couldn't find OpcodeInfo for opcode with value: "
190 Log.errorAndQuit("Unrecognised ident in data-payload instruction: " + rawType);
270 Log.errorAndQuit("Invalid number of vregs reported by a Format.");
312 Log.errorAndQuit(String.format("Opcode: %s (enum ordinal 0x%x) != (value 0x%x)",
581 Log.errorAndQuit("Incorrect number of bytecodes defined.");
MapList.java 203 Log.errorAndQuit("Encountered unknown map item when reading map item list.");
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 136 Log.errorAndQuit("Executor doesn't have correct constructor.");
138 Log.errorAndQuit("Executor couldn't be instantiated.");
140 Log.errorAndQuit("Executor couldn't be accessed.");
142 Log.errorAndQuit("Invalid arguments to instantiation of Executor.");
144 Log.errorAndQuit("Instantiation of Executor threw an Exception!");
199 Log.errorAndQuit("Problem loading seed file.");
227 Log.errorAndQuit("Your Fuzzer subclass called execute() "
402 Log.errorAndQuit("Couldn't open a file called " + inputName);
404 Log.errorAndQuit("IOException when trying to load a DEX test file!");
429 Log.errorAndQuit("Couldn't open a file called " + outputName)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 73 public static void errorAndQuit(String msg) {
DexFuzz.java 99 Log.errorAndQuit("Invalid options provided, desired fuzzer unknown.");
Options.java 229 Log.errorAndQuit("Specified argument to --inputs is not a directory!");
346 Log.errorAndQuit("No input given, and couldn't find fuzzingseed.dex!");
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
OppositeBranchChanger.java 63 Log.errorAndQuit("Could not find if branch.");
TryBlockShifter.java 137 Log.errorAndQuit("Faulty logic in TryBlockShifter!");
206 Log.errorAndQuit("faulty logic in TryBlockShifter");
VRegChanger.java 135 Log.errorAndQuit("Invalid number of vregs reported by a Format.");
184 Log.errorAndQuit("Invalid number of vregs specified in a VRegChanger mutation.");
InstructionDeleter.java 133 Log.errorAndQuit("Tried to delete a data insn, "
ConversionRepeater.java 165 Log.errorAndQuit(
RandomInstructionGenerator.java 190 Log.errorAndQuit("Invalid number of vregs specified.");
246 Log.errorAndQuit("Invalid number of vregs specified.");
NewInstanceChanger.java 123 Log.errorAndQuit("Less than two types present, quitting...");
ValuePrinter.java 122 Log.errorAndQuit("Requested to print output of an instruction, whose output"

Completed in 347 milliseconds

1 2