Home
last modified time | relevance | path

Searched refs:strm (Results 1 – 25 of 182) sorted by relevance

12345678

/llvm-project-15.0.7/lldb/source/Core/
H A DEmulateInstruction.cpp309 StreamFile strm(stdout, false); in ReadMemoryDefault() local
313 context.Dump(strm, instruction); in ReadMemoryDefault()
314 strm.EOL(); in ReadMemoryDefault()
324 StreamFile strm(stdout, false); in WriteMemoryDefault() local
328 context.Dump(strm, instruction); in WriteMemoryDefault()
329 strm.EOL(); in WriteMemoryDefault()
337 StreamFile strm(stdout, false); in ReadRegisterDefault() local
354 StreamFile strm(stdout, false); in WriteRegisterDefault() local
359 strm.EOL(); in WriteRegisterDefault()
371 strm.PutCString("immediate"); in Dump()
[all …]
H A DUserSettingsController.cpp56 Stream &strm, uint32_t dump_mask) { in DumpAllPropertyValues() argument
59 return properties_sp->DumpValue(exe_ctx, strm, dump_mask); in DumpAllPropertyValues()
63 Stream &strm) const { in DumpAllDescriptions()
64 strm.PutCString("Top level variables:\n\n"); in DumpAllDescriptions()
68 return properties_sp->DumpAllDescriptions(interpreter, strm); in DumpAllDescriptions()
72 Stream &strm, in DumpPropertyValue() argument
77 return properties_sp->DumpPropertyValue(exe_ctx, strm, property_path, in DumpPropertyValue()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleSpec.h166 strm << m_file; in Dump()
167 strm.PutCString("'"); in Dump()
172 strm.PutCString(", "); in Dump()
175 strm.PutCString("'"); in Dump()
182 strm << m_symbol_file; in Dump()
183 strm.PutCString("'"); in Dump()
189 strm.Printf("arch = "); in Dump()
197 m_uuid.Dump(&strm); in Dump()
380 void Dump(Stream &strm) { in Dump() argument
385 spec.Dump(strm); in Dump()
[all …]
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DProperty.cpp236 bool Property::DumpQualifiedName(Stream &strm) const { in DumpQualifiedName()
238 if (m_value_sp->DumpQualifiedName(strm)) in DumpQualifiedName()
239 strm.PutChar('.'); in DumpQualifiedName()
240 strm << m_name; in DumpQualifiedName()
253 strm << "settings set -f "; in Dump()
256 DumpQualifiedName(strm); in Dump()
258 strm.PutChar(' '); in Dump()
264 strm << "-- " << desc; in Dump()
268 strm.EOL(); in Dump()
270 m_value_sp->DumpValue(exe_ctx, strm, dump_mask); in Dump()
[all …]
H A DOptions.cpp290 strm.EOL(); in OutputFormattedUsageText()
319 strm.EOL(); in OutputFormattedUsageText()
320 strm.Indent(); in OutputFormattedUsageText()
326 strm.EOL(); in OutputFormattedUsageText()
369 strm.PutChar('['); in PrintOption()
389 strm.PutChar(']'); in PrintOption()
411 strm.IndentMore(2); in GenerateOptionUsage()
518 strm.EOL(); in GenerateOptionUsage()
524 strm.Indent(); in GenerateOptionUsage()
533 strm.EOL(); in GenerateOptionUsage()
[all …]
H A DOptionValueDictionary.cpp29 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
34 strm.PutCString(" ="); in DumpValue()
39 strm.IndentMore(); in DumpValue()
45 strm << ' '; in DumpValue()
47 strm.EOL(); in DumpValue()
49 strm.Indent(pos->first.GetStringRef()); in DumpValue()
59 strm.PutChar(' '); in DumpValue()
74 strm.PutCString("="); in DumpValue()
82 strm.IndentLess(); in DumpValue()
90 StreamString strm; in GetArgs() local
[all …]
H A DOptionValueFileSpecList.cpp18 Stream &strm, uint32_t dump_mask) { in DumpValue() argument
21 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
26 strm.Printf(" =%s", in DumpValue()
29 strm.IndentMore(); in DumpValue()
32 strm.Indent(); in DumpValue()
33 strm.Printf("[%u]: ", i); in DumpValue()
35 m_current_value.GetFileSpecAtIndex(i).Dump(strm.AsRawOstream()); in DumpValue()
37 strm << ' '; in DumpValue()
40 strm.IndentLess(); in DumpValue()
H A DOptionValueArray.cpp17 void OptionValueArray::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue() argument
22 strm.Printf("(%s of %ss)", GetTypeAsCString(), in DumpValue()
25 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
31 strm.Printf(" =%s", (m_values.size() > 0 && !one_line) ? "\n" : ""); in DumpValue()
33 strm.IndentMore(); in DumpValue()
36 strm.Indent(); in DumpValue()
37 strm.Printf("[%u]: ", i); in DumpValue()
47 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue()
68 strm.EOL(); in DumpValue()
70 strm << ' '; in DumpValue()
[all …]
H A DOptionValueChar.cpp19 void OptionValueChar::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue() argument
22 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
26 strm.PutCString(" = "); in DumpValue()
28 strm.PutChar(m_current_value); in DumpValue()
30 strm.PutCString("(null)"); in DumpValue()
H A DOptionValueString.cpp18 void OptionValueString::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue() argument
21 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
24 strm.PutCString(" = "); in DumpValue()
31 strm.Printf("%s", expanded_escape_value.c_str()); in DumpValue()
33 strm.Printf("\"%s\"", expanded_escape_value.c_str()); in DumpValue()
36 strm.Printf("%s", m_current_value.c_str()); in DumpValue()
38 strm.Printf("\"%s\"", m_current_value.c_str()); in DumpValue()
H A DOptionValueFileColonLine.cpp33 Stream &strm, uint32_t dump_mask) { in DumpValue() argument
35 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
38 strm.PutCString(" = "); in DumpValue()
41 strm << '"' << m_file_spec.GetPath().c_str() << '"'; in DumpValue()
43 strm.Printf(":%d", m_line_number); in DumpValue()
45 strm.Printf(":%d", m_column_number); in DumpValue()
H A DCommandReturnObject.cpp17 static llvm::raw_ostream &error(Stream &strm) { in error() argument
18 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Error, in error()
23 static llvm::raw_ostream &warning(Stream &strm) { in warning() argument
24 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Warning, in warning()
29 static void DumpStringToStreamWithNewline(Stream &strm, const std::string &s) { in DumpStringToStreamWithNewline() argument
34 strm.Write(s.c_str(), s.size()); in DumpStringToStreamWithNewline()
40 strm.EOL(); in DumpStringToStreamWithNewline()
H A DOptionValueFormat.cpp18 void OptionValueFormat::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue() argument
21 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
24 strm.PutCString(" = "); in DumpValue()
25 strm.PutCString(FormatManager::GetFormatAsCString(m_current_value)); in DumpValue()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectRegister.cpp86 bool DumpRegister(const ExecutionContext &exe_ctx, Stream &strm, in DumpRegister() argument
92 strm.Indent(); in DumpRegister()
108 strm.PutCString(" "); in DumpRegister()
115 strm.EOL(); in DumpRegister()
135 strm.IndentMore(); in DumpRegisterSet()
144 if (DumpRegister(exe_ctx, strm, reg_ctx, reg_info)) in DumpRegisterSet()
149 strm.IndentLess(); in DumpRegisterSet()
151 strm.Indent(); in DumpRegisterSet()
154 strm.EOL(); in DumpRegisterSet()
161 Stream &strm = result.GetOutputStream(); in DoExecute() local
[all …]
H A DCommandObjectTarget.cpp114 strm.EOL(); in DumpTargetInfo()
1387 strm.EOL(); in DumpModuleObjfileHeaders()
1388 strm.EOL(); in DumpModuleObjfileHeaders()
1454 strm.EOL(); in DumpAddress()
1536 strm.Indent(); in LookupSymbolInModule()
1626 strm.Indent(); in LookupTypeInModule()
1652 strm.EOL(); in LookupTypeInModule()
1672 strm.Indent(); in LookupTypeHere()
1687 strm.EOL(); in LookupTypeHere()
1697 strm.EOL(); in LookupTypeHere()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp70 strm.Printf(" %s", s.GetString().data()); in DescribeAddressBriefly()
71 strm.Printf(".\n"); in DescribeAddressBriefly()
103 StreamString strm; in DeterminePtrauthFailure() local
135 m_description = std::string(strm.GetString()); in DeterminePtrauthFailure()
166 m_description = std::string(strm.GetString()); in DeterminePtrauthFailure()
456 StreamString strm; in GetDescription() local
459 strm.PutCString(exc_desc); in GetDescription()
461 strm.Printf("EXC_??? (%" PRIu64 ")", m_value); in GetDescription()
465 strm.Printf(" (%s=%s", code_label, code_desc); in GetDescription()
478 strm.PutChar(')'); in GetDescription()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp2548 strm.EOL(); in LoadAllocation()
2735 strm.EOL(); in SaveAllocation()
3096 strm.EOL(); in DumpContexts()
3125 strm.EOL(); in DumpKernels()
3313 strm.EOL(); in DumpAllocation()
3336 strm.EOL(); in RecomputeAllAllocations()
3347 strm.EOL(); in ListAllocations()
3803 strm.EOL(); in DumpModules()
3891 strm.EOL(); in Dump()
3896 strm.EOL(); in Dump()
[all …]
H A DRenderScriptRuntime.h66 if (strm) in GetDescription()
116 if (strm) in GetDescription()
148 void Dump(Stream &strm) const;
160 void Dump(Stream &strm) const;
180 void Dump(Stream &strm) const;
229 void Dump(Stream &strm) const;
263 if (strm) in GetDescription()
358 void DumpModules(Stream &strm) const;
360 void DumpContexts(Stream &strm) const;
362 void DumpKernels(Stream &strm) const;
[all …]
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DLLDBUtils.cpp16 llvm::raw_ostream &strm) { in RunLLDBCommands() argument
21 strm << prefix << "\n"; in RunLLDBCommands()
24 strm << "(lldb) " << command << "\n"; in RunLLDBCommands()
29 strm << output; in RunLLDBCommands()
34 strm << error; in RunLLDBCommands()
42 llvm::raw_string_ostream strm(s); in RunLLDBCommands() local
43 RunLLDBCommands(prefix, commands, strm); in RunLLDBCommands()
44 strm.flush(); in RunLLDBCommands()
/llvm-project-15.0.7/lldb/source/Utility/
H A DStringList.cpp100 strm.PutCString(separator); in Join()
200 StreamString strm; in CopyList() local
203 strm << items_sep; in CopyList()
205 strm << item_preamble; in CopyList()
206 strm << GetStringAtIndex(i); in CopyList()
208 return std::string(strm.GetString()); in CopyList()
236 StreamString strm; in LogDump() local
238 strm.Printf("Begin %s:\n", name); in LogDump()
240 strm.Indent(); in LogDump()
241 strm.Printf("%s\n", s.c_str()); in LogDump()
[all …]
/llvm-project-15.0.7/lldb/source/Target/
H A DStopInfo.cpp187 StreamString strm; in GetDescription() local
207 StreamString strm; in GetDescription() local
466 StreamString strm; in PerformAction() local
471 strm << err_str; in PerformAction()
685 StreamString strm; in GetDescription() local
883 StreamString strm; in PerformAction() local
888 strm << err_str; in PerformAction()
988 StreamString strm; in DoShouldNotify() local
989 strm.Printf( in DoShouldNotify()
1014 StreamString strm; in GetDescription() local
[all …]
H A DThreadPlanStack.cpp455 strm.IndentMore(); in DumpPlans()
456 strm.Indent(); in DumpPlans()
458 strm.IndentLess(); in DumpPlans()
463 strm.Indent(); in DumpPlans()
481 strm.Format("Unknown TID: {0}", tid); in DumpPlansForTID()
490 strm.Format("Unknown TID: {0}\n", tid); in DumpPlansForTID()
498 strm.IndentMore(); in DumpPlansForTID()
499 strm.Indent(); in DumpPlansForTID()
500 strm.Printf("No active thread plans\n"); in DumpPlansForTID()
501 strm.IndentLess(); in DumpPlansForTID()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp244 StreamString strm; in GetNonCallSiteUnwindPlanFromAssembly() local
299 StreamString strm; in GetNonCallSiteUnwindPlanFromAssembly() local
388 StreamString strm; in ReadMemory() local
389 strm.Printf( in ReadMemory()
393 context.Dump(strm, instruction); in ReadMemory()
420 StreamString strm; in WriteMemory() local
425 strm.PutCString(", context = "); in WriteMemory()
426 context.Dump(strm, instruction); in WriteMemory()
502 StreamString strm; in ReadRegister() local
528 StreamString strm; in WriteRegister() local
[all …]
/llvm-project-15.0.7/lldb/examples/lookup/
H A Dmain.cpp165 SBStream strm; in main() local
166 strm.RedirectToFileHandle(stdout, false); in main()
204 strm.Printf(" Address: %s + 0x%llx\n Summary: ", in main()
206 addr.GetDescription(strm); in main()
207 strm.Printf("\n"); in main()
209 sc.GetDescription(strm); in main()
/llvm-project-15.0.7/lldb/source/API/
H A DSBEvent.cpp176 Stream &strm = description.ref(); in GetDescription() local
179 m_opaque_ptr->Dump(&strm); in GetDescription()
181 strm.PutCString("No value"); in GetDescription()
189 Stream &strm = description.ref(); in GetDescription() local
192 m_opaque_ptr->Dump(&strm); in GetDescription()
194 strm.PutCString("No value"); in GetDescription()

12345678