Searched refs:vios (Results 1 – 11 of 11) sorted by relevance
/art/runtime/ |
D | stack_map.cc | 248 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios) const { in Dump() 250 ScopedIndentation indent1(vios); in Dump() 254 vios->Stream() << "v" << i << ":" << reg << " "; in Dump() 257 vios->Stream() << "\n"; in Dump() 261 void CodeInfo::Dump(VariableIndentationOutputStream* vios, in Dump() argument 265 vios->Stream() << "CodeInfo " in Dump() 271 ScopedIndentation indent1(vios); in Dump() 272 ForEachBitTableField([this, &vios, verbose](size_t, auto member_pointer) { in Dump() 275 vios->Stream() << table.GetName() << " BitSize=" << table.DataBitSize(); in Dump() 276 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump() [all …]
|
D | stack_map.h | 104 void Dump(VariableIndentationOutputStream* vios) const; 164 void Dump(VariableIndentationOutputStream* vios, 198 void Dump(VariableIndentationOutputStream* vios, 420 void Dump(VariableIndentationOutputStream* vios,
|
D | parsed_options.cc | 747 VariableIndentationOutputStream vios(&oss); in Usage() local 749 parser->DumpHelp(vios); in Usage()
|
/art/cmdline/ |
D | cmdline_parser.h | 527 void DumpHelp(VariableIndentationOutputStream& vios); 719 void CmdlineParser<TVariantMap, TVariantMapKey>::DumpHelp(VariableIndentationOutputStream& vios) { in DumpHelp() argument 735 arg->DumpHelp(vios); in DumpHelp() 736 vios.Stream(); in DumpHelp() 741 vios.Stream() << "The following " << it << " arguments are supported:" << std::endl; in DumpHelp() 742 ScopedIndentation si(&vios); in DumpHelp() 744 arg->DumpHelp(vios); in DumpHelp() 745 vios.Stream(); in DumpHelp() 751 vios.Stream() << "The following " << cat << " arguments are supported:" << std::endl; in DumpHelp() 752 ScopedIndentation si(&vios); in DumpHelp() [all …]
|
/art/oatdump/ |
D | oatdump.cc | 554 VariableIndentationOutputStream vios(&os); in Dump() local 572 deps.Dump(&vios); in Dump() 680 VariableIndentationOutputStream vios(&os); in Dump() local 682 DumpStats(vios, "OatFile", stats_, stats_.Value()); in Dump() 923 VariableIndentationOutputStream vios(&os); in DumpOatDexFile() local 924 ScopedIndentation indent1(&vios); in DumpOatDexFile() 946 if (!DumpOatClass(&vios, oat_class, *dex_file, accessor, &stop_analysis)) { in DumpOatDexFile() 1069 bool DumpOatClass(VariableIndentationOutputStream* vios, in DumpOatClass() argument 1078 if (!DumpOatMethod(vios, in DumpOatClass() 1095 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 | 885 void VerifierDeps::Dump(VariableIndentationOutputStream* vios) const { in Dump() 901 vios->Stream() in Dump() 906 ScopedIndentation indent(vios); in Dump() 909 vios->Stream() << "Extra string: " << str << "\n"; in Dump() 913 vios->Stream() in Dump() 921 vios->Stream() in Dump() 929 vios->Stream() in Dump() 938 vios->Stream() in Dump() 944 vios->Stream() << "unresolved\n"; in Dump() 946 vios->Stream() in Dump() [all …]
|
D | method_verifier.cc | 782 VariableIndentationOutputStream vios(&os); in Dump() local 783 Dump(&vios); in Dump() 785 void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_); 1631 void MethodVerifier<kVerifierDebug>::Dump(VariableIndentationOutputStream* vios) { in Dump() argument 1633 vios->Stream() << "Native method\n"; in Dump() 1637 vios->Stream() << "Register Types:\n"; in Dump() 1638 ScopedIndentation indent1(vios); in Dump() 1639 reg_types_.Dump(vios->Stream()); in Dump() 1641 vios->Stream() << "Dumping instructions and register lines:\n"; in Dump() 1642 ScopedIndentation indent1(vios); in Dump() [all …]
|
D | method_verifier.h | 120 VariableIndentationOutputStream* vios,
|
D | verifier_deps.h | 127 void Dump(VariableIndentationOutputStream* vios) const;
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 147 void DumpHelp(VariableIndentationOutputStream& vios) { in DumpHelp() 150 auto& os = vios.Stream(); in DumpHelp() 183 ScopedIndentation si(&vios); in DumpHelp() 184 vios.Stream() << help_.value() << std::endl; in DumpHelp()
|