Searched defs:mutation (Results 1 - 2 of 2) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutationSerializer.java31 public static String getMutationString(Mutation mutation) { argument
33 builder.append(mutation.mutatorClass.getCanonicalName()).append(" ");
34 builder.append(mutation.mutatableCodeIdx).append(" ");
35 builder.append(mutation.getString());
39 public static void writeMutation(BufferedWriter writer, Mutation mutation) throws IOException { argument
41 writer.write(mutation.mutatorClass.getCanonicalName() + " "
42 + mutation.mutatableCodeIdx + " ");
44 // Use the mutation's own function to write out the rest of the fields.
45 writer.write(mutation.getString() + "\n");
55 Log.errorAndQuit("Could not read line during mutation loadin
[all...]
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DCodeMutator.java75 Log.info("Set mutation likelihood to " + likelihood
84 * is expected to implement to perform its mutation.
86 * @return If mutation took place.
93 Log.info("Skipping mutation.");
97 public void forceMutate(Mutation mutation) { argument
98 Log.info("Forcing mutation.");
99 applyMutation(mutation);
108 * provided likelihood of mutation.
117 Mutation mutation = generateMutation(mutatableCode);
118 // Always save the mutation
[all...]

Completed in 213 milliseconds