Home
last modified time | relevance | path

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

/art/compiler/dwarf/
Dheaders.h46 Writer<> writer(debug_frame); in WriteDebugFrameCIE()
47 size_t cie_header_start_ = writer.data()->size(); in WriteDebugFrameCIE()
48 writer.PushUint32(0); // Length placeholder. in WriteDebugFrameCIE()
49 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id. in WriteDebugFrameCIE()
50 writer.PushUint8(1); // Version. in WriteDebugFrameCIE()
51 writer.PushString("zR"); in WriteDebugFrameCIE()
52 writer.PushUleb128(DebugFrameOpCodeWriter<Allocator>::kCodeAlignmentFactor); in WriteDebugFrameCIE()
53 writer.PushSleb128(DebugFrameOpCodeWriter<Allocator>::kDataAlignmentFactor); in WriteDebugFrameCIE()
54 writer.PushUleb128(return_address_register.num()); // ubyte in DWARF2. in WriteDebugFrameCIE()
55 writer.PushUleb128(1); // z: Augmentation data size. in WriteDebugFrameCIE()
[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()
/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.cc66 std::unique_ptr<ImageWriter> writer(new ImageWriter(*compiler_driver_, requested_image_base, in TEST_F() local
83 writer.get(), &timings, &key_value_store); in TEST_F()
84 bool success = writer->PrepareImageAddressSpace() && in TEST_F()
99 writer->Write(image_file.GetFilename(), dup_oat->GetPath(), dup_oat->GetPath()); in TEST_F()
101 bool success_fixup = ElfWriter::Fixup(dup_oat.get(), writer->GetOatDataBegin()); in TEST_F()
140 writer.reset(nullptr); in TEST_F()
Doat_writer.cc227 DexMethodVisitor(OatWriter* writer, size_t offset) in DexMethodVisitor() argument
228 : writer_(writer), in DexMethodVisitor()
271 OatDexMethodVisitor(OatWriter* writer, size_t offset) in OatDexMethodVisitor() argument
272 : DexMethodVisitor(writer, offset), in OatDexMethodVisitor()
296 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset) in InitOatClassesMethodVisitor() argument
297 : DexMethodVisitor(writer, offset), in InitOatClassesMethodVisitor()
352 InitCodeMethodVisitor(OatWriter* writer, size_t offset) in InitCodeMethodVisitor() argument
353 : OatDexMethodVisitor(writer, offset), in InitCodeMethodVisitor()
354 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()) { in InitCodeMethodVisitor()
555 InitMapMethodVisitor(OatWriter* writer, size_t offset) in InitMapMethodVisitor() argument
[all …]
Dimage_writer.h187 static void* GetImageAddressCallback(void* writer, mirror::Object* obj) in GetImageAddressCallback() argument
189 return reinterpret_cast<ImageWriter*>(writer)->GetImageAddress(obj); in GetImageAddressCallback()
Dimage_writer.cc879 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); in WalkFieldsCallback() local
880 DCHECK(writer != nullptr); in WalkFieldsCallback()
881 writer->WalkFieldsInOrder(obj); in WalkFieldsCallback()
885 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); in UnbinObjectsIntoOffsetCallback() local
886 DCHECK(writer != nullptr); in UnbinObjectsIntoOffsetCallback()
887 writer->UnbinObjectsIntoOffset(obj); in UnbinObjectsIntoOffsetCallback()