Home
last modified time | relevance | path

Searched refs:writer (Results 1 – 9 of 9) sorted by relevance

/art/compiler/debug/dwarf/
Dheaders.h48 Writer<> writer(buffer); in WriteCIE()
49 size_t cie_header_start_ = writer.data()->size(); in WriteCIE()
50 writer.PushUint32(0); // Length placeholder. in WriteCIE()
51 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id. in WriteCIE()
52 writer.PushUint8(1); // Version. in WriteCIE()
53 writer.PushString("zR"); in WriteCIE()
54 writer.PushUleb128(DebugFrameOpCodeWriter<Vector>::kCodeAlignmentFactor); in WriteCIE()
55 writer.PushSleb128(DebugFrameOpCodeWriter<Vector>::kDataAlignmentFactor); in WriteCIE()
56 writer.PushUleb128(return_address_register.num()); // ubyte in DWARF2. in WriteCIE()
57 writer.PushUleb128(1); // z: Augmentation data size. in WriteCIE()
[all …]
/art/tools/dexfuzz/src/dexfuzz/listeners/
DLogFileListener.java36 private BufferedWriter writer; field in LogFileListener
58 writer = new BufferedWriter(new FileWriter(logFile)); in setup()
68 writer.close(); in shutdown()
80 writer.write(msg + "\n"); in write()
144 writer.flush(); in handleDivergences()
161 writer.flush(); in handleSeed()
DBisectionSearchListener.java58 PrintWriter writer = new PrintWriter(file); in writeToFile() local
59 writer.write(toWrite); in writeToFile()
60 writer.close(); in writeToFile()
/art/tools/dexfuzz/src/dexfuzz/program/
DMutationSerializer.java39 public static void writeMutation(BufferedWriter writer, Mutation mutation) throws IOException { in writeMutation() argument
41 writer.write(mutation.mutatorClass.getCanonicalName() + " " in writeMutation()
45 writer.write(mutation.getString() + "\n"); in writeMutation()
DProgram.java483 BufferedWriter writer = new BufferedWriter(new FileWriter(fileName)); in writeMutationsToDisk() local
485 MutationSerializer.writeMutation(writer, mutation); in writeMutationsToDisk()
487 writer.close(); in writeMutationsToDisk()
/art/compiler/
Dimage_test.cc207 std::unique_ptr<ImageWriter> writer(new ImageWriter(*driver, in Compile() local
285 bool image_space_ok = writer->PrepareImageAddressSpace(); in Compile()
304 oat_writer->Initialize(driver, writer.get(), cur_dex_files); in Compile()
313 writer->UpdateOatFileLayout(i, in Compile()
330 writer->UpdateOatFileHeader(i, oat_writer->GetOatHeader()); in Compile()
340 bool success_image = writer->Write(kInvalidFd, in Compile()
350 writer->GetOatDataBegin(i)); in Compile()
Doat_writer.cc609 DexMethodVisitor(OatWriter* writer, size_t offset) in DexMethodVisitor() argument
610 : writer_(writer), in DexMethodVisitor()
653 OatDexMethodVisitor(OatWriter* writer, size_t offset) in OatDexMethodVisitor() argument
654 : DexMethodVisitor(writer, offset), in OatDexMethodVisitor()
678 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset) in InitOatClassesMethodVisitor() argument
679 : DexMethodVisitor(writer, offset), in InitOatClassesMethodVisitor()
743 InitCodeMethodVisitor(OatWriter* writer, size_t offset, size_t quickening_info_offset) in InitCodeMethodVisitor() argument
744 : OatDexMethodVisitor(writer, offset), in InitCodeMethodVisitor()
745 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()), in InitCodeMethodVisitor()
953 InitMapMethodVisitor(OatWriter* writer, size_t offset) in InitMapMethodVisitor() argument
[all …]
Dimage_writer.h360 static void* GetImageAddressCallback(void* writer, mirror::Object* obj) in GetImageAddressCallback() argument
362 return reinterpret_cast<ImageWriter*>(writer)->GetImageAddress(obj); in GetImageAddressCallback()
Dimage_writer.cc1441 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); in EnsureBinSlotAssignedCallback() local
1442 DCHECK(writer != nullptr); in EnsureBinSlotAssignedCallback()
1444 CHECK(writer->IsImageBinSlotAssigned(obj)) << mirror::Object::PrettyTypeOf(obj) << " " << obj; in EnsureBinSlotAssignedCallback()
1453 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); in UnbinObjectsIntoOffsetCallback() local
1454 DCHECK(writer != nullptr); in UnbinObjectsIntoOffsetCallback()
1455 if (!writer->IsInBootImage(obj)) { in UnbinObjectsIntoOffsetCallback()
1456 writer->UnbinObjectsIntoOffset(obj); in UnbinObjectsIntoOffsetCallback()