Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp199 StreamString arch_strm; in DumpAsTableRow() local
201 m_arch.DumpTriple(arch_strm.AsRawOstream()); in DumpAsTableRow()
230 s.Printf("%-30s ", arch_strm.GetData()); in DumpAsTableRow()
235 s.Printf("%-30s ", arch_strm.GetData()); in DumpAsTableRow()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1250 StreamString arch_strm; in DumpModuleArchitecture() local
1253 module->GetArchitecture().DumpTriple(arch_strm.AsRawOstream()); in DumpModuleArchitecture()
1255 arch_strm.PutCString(module->GetArchitecture().GetArchitectureName()); in DumpModuleArchitecture()
1256 std::string arch_str = std::string(arch_strm.GetString()); in DumpModuleArchitecture()