Home
last modified time | relevance | path

Searched refs:arch_strm (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DProcessInfo.cpp191 StreamString arch_strm; in DumpAsTableRow() local
193 m_arch.DumpTriple(arch_strm.AsRawOstream()); in DumpAsTableRow()
222 s.Printf("%-30s ", arch_strm.GetData()); in DumpAsTableRow()
227 s.Printf("%-30s ", arch_strm.GetData()); in DumpAsTableRow()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp1274 StreamString arch_strm; in DumpModuleArchitecture() local
1277 module->GetArchitecture().DumpTriple(arch_strm.AsRawOstream()); in DumpModuleArchitecture()
1279 arch_strm.PutCString(module->GetArchitecture().GetArchitectureName()); in DumpModuleArchitecture()
1280 std::string arch_str = std::string(arch_strm.GetString()); in DumpModuleArchitecture()