Lines Matching refs:Stream
733 vios->Stream() << std::flush; in DumpOatClass()
766 vios->Stream() << std::flush; in DumpOatClass()
790 vios->Stream() << StringPrintf("%d: %s (dex_method_idx=%d)\n", in DumpOatMethod()
812 vios->Stream() << "DEX CODE:\n"; in DumpOatMethod()
814 DumpDexCode(vios->Stream(), dex_file, code_item); in DumpOatMethod()
823 vios->Stream() << "VERIFIER TYPE ANALYSIS:\n"; in DumpOatMethod()
830 vios->Stream() << "OatMethodOffsets "; in DumpOatMethod()
832 vios->Stream() << StringPrintf("%p ", oat_method_offsets); in DumpOatMethod()
834 vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset); in DumpOatMethod()
836 vios->Stream() << StringPrintf( in DumpOatMethod()
840 vios->Stream() << std::flush; in DumpOatMethod()
845 vios->Stream() << StringPrintf("code_offset: 0x%08x ", code_offset); in DumpOatMethod()
848 vios->Stream() << StringPrintf("WARNING: " in DumpOatMethod()
853 vios->Stream() << "\n"; in DumpOatMethod()
856 vios->Stream() << "OatQuickMethodHeader "; in DumpOatMethod()
861 vios->Stream() << StringPrintf("%p ", method_header); in DumpOatMethod()
863 vios->Stream() << StringPrintf("(offset=0x%08x)\n", method_header_offset); in DumpOatMethod()
865 vios->Stream() << StringPrintf( in DumpOatMethod()
869 vios->Stream() << std::flush; in DumpOatMethod()
874 vios->Stream() << "vmap_table: "; in DumpOatMethod()
876 vios->Stream() << StringPrintf("%p ", oat_method.GetVmapTable()); in DumpOatMethod()
879 vios->Stream() << StringPrintf("(offset=0x%08x)\n", vmap_table_offset); in DumpOatMethod()
881 vios->Stream() << StringPrintf("WARNING: " in DumpOatMethod()
892 vios->Stream() << "QuickMethodFrameInfo\n"; in DumpOatMethod()
895 vios->Stream() in DumpOatMethod()
897 vios->Stream() << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask()); in DumpOatMethod()
898 DumpSpillMask(vios->Stream(), oat_method.GetCoreSpillMask(), false); in DumpOatMethod()
899 vios->Stream() << "\n"; in DumpOatMethod()
900 vios->Stream() << StringPrintf("fp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask()); in DumpOatMethod()
901 DumpSpillMask(vios->Stream(), oat_method.GetFpSpillMask(), true); in DumpOatMethod()
902 vios->Stream() << "\n"; in DumpOatMethod()
909 DumpVregLocations(vios->Stream(), oat_method, code_item); in DumpOatMethod()
912 vios->Stream() << "CODE: "; in DumpOatMethod()
916 vios->Stream() << StringPrintf("WARNING: " in DumpOatMethod()
926 vios->Stream() << StringPrintf("%p ", code); in DumpOatMethod()
928 vios->Stream() << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n", in DumpOatMethod()
936 vios->Stream() << StringPrintf("WARNING: " in DumpOatMethod()
941 vios->Stream() << StringPrintf( in DumpOatMethod()
954 vios->Stream() << StringPrintf( in DumpOatMethod()
971 vios->Stream() << std::flush; in DumpOatMethod()
1015 vios->Stream() << "quickened data\n"; in DumpVmapData()
1225 vios->Stream() << "NO CODE!\n"; in DumpCode()
1233 offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset); in DumpCode()
1254 offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset); in DumpCode()
1283 std::ostream& indent_os = vios_.Stream(); in Dump()
1529 std::ostream& indent_os = image_dumper_->vios_.Stream(); in Visit()
1667 std::ostream& os = state->vios_.Stream(); in Callback()