Home
last modified time | relevance | path

Searched refs:output_stream (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp231 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
238 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level); in DoExecute()
254 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level); in DoExecute()
830 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
930 output_stream.Printf("Watchpoint created: "); in DoExecute()
931 watch_sp->GetDescription(&output_stream, lldb::eDescriptionLevelFull); in DoExecute()
932 output_stream.EOL(); in DoExecute()
1101 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
1102 output_stream.Printf("Watchpoint created: "); in DoExecute()
1103 watch_sp->GetDescription(&output_stream, lldb::eDescriptionLevelFull); in DoExecute()
[all …]
H A DCommandObjectMultiword.cpp219 void CommandObjectMultiword::GenerateHelpText(Stream &output_stream) {
223 CommandObject::GenerateHelpText(output_stream); in GenerateHelpText()
224 output_stream.PutCString("\nThe following subcommands are supported:\n\n"); in GenerateHelpText()
238 m_interpreter.OutputFormattedHelpText(output_stream, indented_command, in GenerateHelpText()
241 m_interpreter.OutputFormattedHelpText(output_stream, indented_command, in GenerateHelpText()
246 output_stream.PutCString("\nFor more help on any particular subcommand, type " in GenerateHelpText()
220 GenerateHelpText(Stream & output_stream) GenerateHelpText() argument
H A DCommandObjectFrame.cpp600 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
603 if (llvm::Error error = valobj_sp->Dump(output_stream, options)) in DoExecute()
1080 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
1081 output_stream.Printf("frame %d ", frame_index); in DoExecute()
1083 output_stream << "is recognized by "; in DoExecute()
1084 output_stream << recognizer->GetName(); in DoExecute()
1086 output_stream << "not recognized by any recognizer"; in DoExecute()
1088 output_stream.EOL(); in DoExecute()
H A DCommandObjectLog.cpp306 llvm::raw_string_ostream output_stream(output); in DoExecute() local
308 Log::ListAllLogChannels(output_stream); in DoExecute()
314 success && Log::ListChannelCategories(entry.ref(), output_stream); in DoExecute()
318 result.GetOutputStream() << output_stream.str(); in DoExecute()
H A DCommandObjectBreakpoint.cpp746 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
748 bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial, in DoExecute()
751 output_stream.Printf("Breakpoint set in dummy target, will get copied " in DoExecute()
758 output_stream.Printf("WARNING: Unable to resolve breakpoint to any " in DoExecute()
1166 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
1174 AddBreakpointDescription(&output_stream, breakpoint, in DoExecute()
1190 AddBreakpointDescription(&output_stream, breakpoint, in DoExecute()
1329 Stream &output_stream = result.GetOutputStream(); in DoExecute() local
1330 output_stream.Printf("%d breakpoints cleared:\n", num_cleared); in DoExecute()
1331 output_stream << ss.GetString(); in DoExecute()
[all …]
H A DCommandObjectExpression.h81 /// \param output_stream The stream to which the evaluation result will be
90 bool EvaluateExpression(llvm::StringRef expr, Stream &output_stream,
H A DCommandObjectWatchpointCommand.cpp251 StreamSP output_stream(debugger.GetAsyncOutputStream()); in WatchpointOptionsCallbackFunction() local
253 result.SetImmediateOutputStream(output_stream); in WatchpointOptionsCallbackFunction()
H A DCommandObjectExpression.cpp402 Stream &output_stream, in EvaluateExpression() argument
465 result_valobj_sp->Dump(output_stream, options)) { in EvaluateExpression()
H A DCommandObjectMemory.cpp1558 Stream *output_stream = &result.GetOutputStream(); in DoExecute() local
1573 thread->GetStatus(*output_stream, 0, UINT32_MAX, 0, stop_format); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBInstruction.cpp338 bool SBInstruction::TestEmulation(lldb::SBStream &output_stream, in TestEmulation() argument
340 LLDB_INSTRUMENT_VA(this, output_stream, test_file); in TestEmulation()
348 return inst_sp->TestEmulation(output_stream.ref(), test_file); in TestEmulation()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp117 bool Log::Dump(llvm::raw_ostream &output_stream) { in Dump() argument
121 handler->Dump(output_stream); in Dump()
256 llvm::raw_ostream &output_stream, in DumpLogChannel() argument
263 if (!iter->second.Dump(output_stream)) { in DumpLogChannel()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBInstruction.h74 bool TestEmulation(lldb::SBStream &output_stream, const char *test_file);
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h45 void GenerateHelpText(Stream &output_stream) override;
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp618 StreamSP output_stream(debugger.GetAsyncOutputStream()); in BreakpointOptionsCallbackFunction() local
620 result.SetImmediateOutputStream(output_stream); in BreakpointOptionsCallbackFunction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h208 llvm::raw_ostream &output_stream,
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1644 StructuredDataDarwinLog::DumpHeader(Stream &output_stream, in DumpTimestamp()
1722 output_stream.PutCString(stream.GetString()); in DumpHeader()
1648 DumpHeader(Stream & output_stream,const StructuredData::Dictionary & event) DumpHeader() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp5235 llvm::raw_string_ostream output_stream(output); in HarmonizeThreadIdsForProfileData() local
5279 output_stream << name << ":"; in HarmonizeThreadIdsForProfileData()
5281 output_stream << index_id << ";"; in HarmonizeThreadIdsForProfileData()
5283 output_stream << usec_name << ":" << usec_value << ";"; in HarmonizeThreadIdsForProfileData()
5295 output_stream << name << ":" << value << ";"; in HarmonizeThreadIdsForProfileData()
5298 output_stream << name << ":" << value << ";"; in HarmonizeThreadIdsForProfileData()
5301 output_stream << end_delimiter; in HarmonizeThreadIdsForProfileData()
5304 return output_stream.str(); in HarmonizeThreadIdsForProfileData()
H A DGDBRemoteCommunicationClient.cpp3994 llvm::raw_string_ostream output_stream(output); in ReadExtFeature() local
4031 output_stream << chunk.GetStringRef().drop_front(); in ReadExtFeature()
4043 return output_stream.str(); in ReadExtFeature()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h455 Stream &output_stream);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp295 Stream &output_stream) { in SetSelectedFrameByIndexNoisily() argument
320 return frame_sp->GetStatus(output_stream, show_frame_info, show_source); in SetSelectedFrameByIndexNoisily()