Home
last modified time | relevance | path

Searched refs:vios (Results 1 – 11 of 11) sorted by relevance

/art/runtime/
Dstack_map.cc248 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 …]
Dstack_map.h104 void Dump(VariableIndentationOutputStream* vios) const;
164 void Dump(VariableIndentationOutputStream* vios,
198 void Dump(VariableIndentationOutputStream* vios,
420 void Dump(VariableIndentationOutputStream* vios,
Dparsed_options.cc747 VariableIndentationOutputStream vios(&oss); in Usage() local
749 parser->DumpHelp(vios); in Usage()
/art/cmdline/
Dcmdline_parser.h527 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/
Doatdump.cc554 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/
Dindenter.h147 explicit ScopedIndentation(VariableIndentationOutputStream* vios,
149 : vios_(vios), in vios_() argument
/art/runtime/verifier/
Dverifier_deps.cc885 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 …]
Dmethod_verifier.cc782 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 …]
Dmethod_verifier.h120 VariableIndentationOutputStream* vios,
Dverifier_deps.h127 void Dump(VariableIndentationOutputStream* vios) const;
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h147 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()