Searched refs:vios (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | stack_map.cc | 212 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios) const { in Dump() 214 ScopedIndentation indent1(vios); in Dump() 218 vios->Stream() << "v" << i << ":" << reg << " "; in Dump() 221 vios->Stream() << "\n"; in Dump() 225 void CodeInfo::Dump(VariableIndentationOutputStream* vios, in Dump() argument 229 vios->Stream() << "CodeInfo BitSize=" << size_in_bits_ in Dump() 235 ScopedIndentation indent1(vios); in Dump() 236 ForEachBitTableField([this, &vios, verbose](auto member_pointer) { in Dump() 239 vios->Stream() << table.GetName() << " BitSize=" << table.DataBitSize(); in Dump() 240 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump() [all …]
|
D | stack_map.h | 104 void Dump(VariableIndentationOutputStream* vios) const; 164 void Dump(VariableIndentationOutputStream* vios, 199 void Dump(VariableIndentationOutputStream* vios, 433 void Dump(VariableIndentationOutputStream* vios,
|
/art/oatdump/ |
D | oatdump.cc | 555 VariableIndentationOutputStream vios(&os); in Dump() local 569 deps.Dump(&vios); in Dump() 677 VariableIndentationOutputStream vios(&os); in Dump() local 679 DumpStats(vios, "OatFile", stats_, stats_.Value()); in Dump() 920 VariableIndentationOutputStream vios(&os); in DumpOatDexFile() local 921 ScopedIndentation indent1(&vios); in DumpOatDexFile() 943 if (!DumpOatClass(&vios, oat_class, *dex_file, accessor, &stop_analysis)) { in DumpOatDexFile() 1066 bool DumpOatClass(VariableIndentationOutputStream* vios, in DumpOatClass() argument 1075 if (!DumpOatMethod(vios, in DumpOatClass() 1092 vios->Stream() << std::flush; in DumpOatClass() [all …]
|
/art/libartbase/base/ |
D | indenter.h | 147 explicit ScopedIndentation(VariableIndentationOutputStream* vios, 149 : vios_(vios), in vios_() argument
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 832 void VerifierDeps::Dump(VariableIndentationOutputStream* vios) const { in Dump() 835 vios->Stream() in Dump() 840 ScopedIndentation indent(vios); in Dump() 843 vios->Stream() << "Extra string: " << str << "\n"; in Dump() 847 vios->Stream() in Dump() 855 vios->Stream() in Dump() 863 vios->Stream() in Dump() 872 vios->Stream() in Dump() 878 vios->Stream() << "unresolved\n"; in Dump() 880 vios->Stream() in Dump() [all …]
|
D | method_verifier.cc | 588 VariableIndentationOutputStream vios(&os); in Dump() local 589 Dump(&vios); in Dump() 591 void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_); 1620 void MethodVerifier<kVerifierDebug>::Dump(VariableIndentationOutputStream* vios) { in Dump() argument 1622 vios->Stream() << "Native method\n"; in Dump() 1626 vios->Stream() << "Register Types:\n"; in Dump() 1627 ScopedIndentation indent1(vios); in Dump() 1628 reg_types_.Dump(vios->Stream()); in Dump() 1630 vios->Stream() << "Dumping instructions and register lines:\n"; in Dump() 1631 ScopedIndentation indent1(vios); in Dump() [all …]
|
D | method_verifier.h | 110 VariableIndentationOutputStream* vios,
|
D | verifier_deps.h | 126 void Dump(VariableIndentationOutputStream* vios) const;
|