Searched defs:writer (Results 1 - 3 of 3) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutationSerializer.java39 public static void writeMutation(BufferedWriter writer, Mutation mutation) throws IOException { argument
41 writer.write(mutation.mutatorClass.getCanonicalName() + " "
45 writer.write(mutation.getString() + "\n");
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DLogFileListener.java36 private BufferedWriter writer; field in class:LogFileListener
58 writer = new BufferedWriter(new FileWriter(logFile));
68 writer.close();
80 writer.write(msg + "\n");
142 // is taking place, so flush the writer now.
144 writer.flush();
161 writer.flush();
/art/compiler/
H A Dimage_writer.cc664 image_info.image_.reset(MemMap::MapAnonymous("image writer image",
1101 // Note: This table is only accessed from the image writer, avoid locking to prevent lock
1270 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); local
1271 DCHECK(writer != nullptr);
1273 CHECK(writer->IsImageBinSlotAssigned(obj)) << PrettyTypeOf(obj) << " " << obj;
1282 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); local
1283 DCHECK(writer != nullptr);
1284 if (!writer->IsInBootImage(obj)) {
1285 writer->UnbinObjectsIntoOffset(obj);

Completed in 247 milliseconds