Searched refs:writer (Results 1 - 8 of 8) sorted by relevance

/art/compiler/debug/dwarf/
H A Dheaders.h27 #include "debug/dwarf/writer.h"
48 Writer<> writer(buffer);
49 size_t cie_header_start_ = writer.data()->size();
50 writer.PushUint32(0); // Length placeholder.
51 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id.
52 writer.PushUint8(1); // Version.
53 writer.PushString("zR");
54 writer.PushUleb128(DebugFrameOpCodeWriter<Vector>::kCodeAlignmentFactor);
55 writer.PushSleb128(DebugFrameOpCodeWriter<Vector>::kDataAlignmentFactor);
56 writer
[all...]
/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");
H A DProgram.java483 BufferedWriter writer = new BufferedWriter(new FileWriter(fileName));
485 MutationSerializer.writeMutation(writer, mutation);
487 writer.close();
/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_test.cc86 std::unique_ptr<ImageWriter> writer(new ImageWriter(*compiler_driver_,
134 bool image_space_ok = writer->PrepareImageAddressSpace();
139 oat_writer.PrepareLayout(compiler_driver_.get(), writer.get(), dex_files, &patcher);
144 writer->UpdateOatFileLayout(/* oat_index */ 0u,
161 writer->UpdateOatFileHeader(/* oat_index */ 0u, oat_writer.GetOatHeader());
178 bool success_image = writer->Write(kInvalidFd,
183 writer->GetOatDataBegin(0));
222 writer.reset(nullptr);
H A Doat_writer.cc532 DexMethodVisitor(OatWriter* writer, size_t offset)
533 : writer_(writer),
576 OatDexMethodVisitor(OatWriter* writer, size_t offset)
577 : DexMethodVisitor(writer, offset),
601 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset)
602 : DexMethodVisitor(writer, offset),
663 InitCodeMethodVisitor(OatWriter* writer, size_t offset)
664 : OatDexMethodVisitor(writer, offset),
665 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()) {
697 // Duplicate methods, we want the same code for both of them so that the oat writer put
[all...]
H A Dimage_writer.h332 static void* GetImageAddressCallback(void* writer, mirror::Object* obj)
334 return reinterpret_cast<ImageWriter*>(writer)->GetImageAddress(obj);
H A Dimage_writer.cc662 image_info.image_.reset(MemMap::MapAnonymous("image writer image",
1158 // Note: This table is only accessed from the image writer, so the lock is technically
1306 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); local
1307 DCHECK(writer != nullptr);
1308 writer->WalkFieldsInOrder(obj);
1312 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); local
1313 DCHECK(writer != nullptr);
1314 if (!writer->IsInBootImage(obj)) {
1315 writer->UnbinObjectsIntoOffset(obj);

Completed in 372 milliseconds