Searched refs:errorAndQuit (Results 1 - 25 of 26) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutationSerializer.java55 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);
H A DIdCreator.java56 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("Invali
[all...]
H A DCodeTranslator.java116 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");
H A DProgram.java329 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/
H A DDevice.java70 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/
H A DDebugInfoItem.java40 Log.errorAndQuit("Error reading debug_info_item. The last byte is not DBG_END_SEQUENCE.");
H A DRawDexFile.java150 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("MapIte
[all...]
H A DOffsetTracker.java186 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.");
H A DEncodedMethod.java34 Log.errorAndQuit("Sorry, DEX files with native methods are not supported yet.");
H A DHeaderItem.java81 Log.errorAndQuit("Invalid header size in header.");
84 Log.errorAndQuit("Read a different amount than expected in header: "
H A DCodeItem.java200 Log.errorAndQuit("Unexpected IndexUpdateKind requested "
H A DInstruction.java123 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.");
H A DMapList.java203 Log.errorAndQuit("Encountered unknown map item when reading map item list.");
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
H A DFuzzer.java136 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("Could
[all...]
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java73 public static void errorAndQuit(String msg) { method in class:Log
H A DDexFuzz.java99 Log.errorAndQuit("Invalid options provided, desired fuzzer unknown.");
H A DOptions.java229 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/
H A DOppositeBranchChanger.java63 Log.errorAndQuit("Could not find if branch.");
H A DTryBlockShifter.java137 Log.errorAndQuit("Faulty logic in TryBlockShifter!");
206 Log.errorAndQuit("faulty logic in TryBlockShifter");
H A DVRegChanger.java135 Log.errorAndQuit("Invalid number of vregs reported by a Format.");
184 Log.errorAndQuit("Invalid number of vregs specified in a VRegChanger mutation.");
H A DInstructionDeleter.java133 Log.errorAndQuit("Tried to delete a data insn, "
H A DConversionRepeater.java165 Log.errorAndQuit(
H A DRandomInstructionGenerator.java190 Log.errorAndQuit("Invalid number of vregs specified.");
246 Log.errorAndQuit("Invalid number of vregs specified.");
H A DNewInstanceChanger.java123 Log.errorAndQuit("Less than two types present, quitting...");
H A DValuePrinter.java122 Log.errorAndQuit("Requested to print output of an instruction, whose output"

Completed in 153 milliseconds

12