Home
last modified time | relevance | path

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

/art/runtime/
Dstack_map.cc241 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios) const { in Dump()
243 ScopedIndentation indent1(vios); in Dump()
247 vios->Stream() << "v" << i << ":" << reg << " "; in Dump()
250 vios->Stream() << "\n"; in Dump()
254 void CodeInfo::Dump(VariableIndentationOutputStream* vios, in Dump() argument
258 vios->Stream() << "CodeInfo" in Dump()
265 ScopedIndentation indent1(vios); in Dump()
266 ForEachBitTableField([this, &vios, verbose](size_t, auto member_pointer) { in Dump()
269 vios->Stream() << table.GetName() << " BitSize=" << table.DataBitSize(); in Dump()
270 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,
440 void Dump(VariableIndentationOutputStream* vios,
Dparsed_options.cc779 VariableIndentationOutputStream vios(&oss); in Usage() local
781 parser->DumpHelp(vios); in Usage()
/art/oatdump/
Doatdump.cc571 VariableIndentationOutputStream vios(&os); in Dump() local
589 deps.Dump(&vios); in Dump()
695 VariableIndentationOutputStream vios(&os); in Dump() local
697 stats_.DumpSizes(vios, "OatFile"); in Dump()
902 VariableIndentationOutputStream vios(&os); in DumpOatDexFile() local
903 ScopedIndentation indent1(&vios); in DumpOatDexFile()
925 if (!DumpOatClass(&vios, oat_class, *dex_file, accessor, &stop_analysis)) { in DumpOatDexFile()
1048 bool DumpOatClass(VariableIndentationOutputStream* vios, in DumpOatClass() argument
1057 if (!DumpOatMethod(vios, in DumpOatClass()
1074 vios->Stream() << std::flush; in DumpOatClass()
[all …]
/art/cmdline/
Dcmdline_parser.h545 void DumpHelp(VariableIndentationOutputStream& vios);
737 void CmdlineParser<TVariantMap, TVariantMapKey>::DumpHelp(VariableIndentationOutputStream& vios) { in DumpHelp() argument
753 arg->DumpHelp(vios); in DumpHelp()
754 vios.Stream(); in DumpHelp()
759 vios.Stream() << "The following " << it << " arguments are supported:" << std::endl; in DumpHelp()
760 ScopedIndentation si(&vios); in DumpHelp()
762 arg->DumpHelp(vios); in DumpHelp()
763 vios.Stream(); in DumpHelp()
769 vios.Stream() << "The following " << cat << " arguments are supported:" << std::endl; in DumpHelp()
770 ScopedIndentation si(&vios); in DumpHelp()
[all …]
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h147 void DumpHelp(VariableIndentationOutputStream& vios) { in DumpHelp()
149 vios.Stream() << std::endl; in DumpHelp()
152 auto& os = vios.Stream(); in DumpHelp()
185 ScopedIndentation si(&vios); in DumpHelp()
186 vios.Stream() << help_.value() << std::endl; in DumpHelp()
/art/libartbase/base/
Dindenter.h147 explicit ScopedIndentation(VariableIndentationOutputStream* vios,
149 : vios_(vios), in vios_() argument
/art/runtime/verifier/
Dverifier_deps.cc648 void VerifierDeps::Dump(VariableIndentationOutputStream* vios) const { in Dump()
664 vios->Stream() in Dump()
669 ScopedIndentation indent(vios); in Dump()
672 vios->Stream() << "Extra string: " << str << "\n"; in Dump()
676 vios->Stream() in Dump()
681 vios->Stream() in Dump()
691 vios->Stream() in Dump()
Dmethod_verifier.cc765 VariableIndentationOutputStream vios(&os); in Dump() local
766 Dump(&vios); in Dump()
768 void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_);
1637 void MethodVerifier<kVerifierDebug>::Dump(VariableIndentationOutputStream* vios) { in Dump() argument
1639 vios->Stream() << "Native method\n"; in Dump()
1643 vios->Stream() << "Register Types:\n"; in Dump()
1644 ScopedIndentation indent1(vios); in Dump()
1645 reg_types_.Dump(vios->Stream()); in Dump()
1647 vios->Stream() << "Dumping instructions and register lines:\n"; in Dump()
1648 ScopedIndentation indent1(vios); in Dump()
[all …]
Dverifier_deps.h115 void Dump(VariableIndentationOutputStream* vios) const;
Dmethod_verifier.h121 VariableIndentationOutputStream* vios,
/art/dex2oat/
Ddex2oat.cc239 VariableIndentationOutputStream vios(&oss); in Usage() local
241 parser.DumpHelp(vios); in Usage()