Home
last modified time | relevance | path

Searched refs:error_stream (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp55 void DumpDiagnostics(Stream &error_stream);
93 Stream &error_stream) override;
96 Stream &error_stream) override;
158 void StoringDiagnosticConsumer::DumpDiagnostics(Stream &error_stream) { in DumpDiagnostics() argument
162 error_stream.PutCString(diag.second); in DumpDiagnostics()
163 error_stream.PutChar('\n'); in DumpDiagnostics()
273 Stream &error_stream) { in AddModule() argument
277 error_stream.PutCString("error: Couldn't load a module because the module " in AddModule()
314 error_stream.Printf("error: No module map file in %s\n", in AddModule()
333 error_stream.Printf("error: Header search couldn't locate module %s\n", in AddModule()
[all …]
H A DClangModulesDeclVendor.h59 Stream &error_stream) = 0;
82 Stream &error_stream) = 0;
H A DIRForTarget.cpp75 lldb_private::Stream &error_stream, in IRForTarget() argument
78 m_decl_map(decl_map), m_error_stream(error_stream), in IRForTarget()
1314 lldb_private::Stream &error_stream) { in UnfoldConstant() argument
1331 error_stream.Printf("error [IRForTarget internal]: Unhandled " in UnfoldConstant()
1352 entry_instruction_finder, error_stream)) in UnfoldConstant()
1387 entry_instruction_finder, error_stream)) in UnfoldConstant()
1392 error_stream.Printf( in UnfoldConstant()
1400 error_stream.PutCString("error: Capturing non-local variables in " in UnfoldConstant()
1407 error_stream.Printf( in UnfoldConstant()
H A DIRForTarget.h80 /// \param[in] error_stream
87 lldb_private::Stream &error_stream,
389 lldb_private::Stream &error_stream);
H A DClangUserExpression.cpp373 StreamString error_stream; in SetupDeclVendor() local
378 error_stream)) in SetupDeclVendor()
382 if (!error_stream.Empty()) { in SetupDeclVendor()
386 diagnostic_manager.PutString(lldb::eSeverityInfo, error_stream.GetString()); in SetupDeclVendor()
H A DClangExpressionSourceCode.cpp388 StreamString error_stream; in GetText() local
391 *sc.comp_unit, modules_for_macros, error_stream); in GetText()
H A DClangExpressionParser.cpp134 StreamString error_stream; in moduleImport() local
1377 StreamString error_stream; in DoPrepareForExecution() local
1379 *execution_unit_sp, error_stream, in DoPrepareForExecution()
1383 err.SetErrorString(error_stream.GetString()); in DoPrepareForExecution()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectLog.cpp204 llvm::raw_string_ostream error_stream(error); in DoExecute() local
208 error_stream); in DoExecute()
209 result.GetErrorStream() << error_stream.str(); in DoExecute()
274 llvm::raw_string_ostream error_stream(error); in DoExecute() local
276 error_stream)) in DoExecute()
278 result.GetErrorStream() << error_stream.str(); in DoExecute()
404 llvm::raw_string_ostream error_stream(error); in DoExecute() local
405 if (Log::DumpLogChannel(channel, *stream_up, error_stream)) { in DoExecute()
409 result.GetErrorStream() << error_stream.str(); in DoExecute()
H A DCommandObjectExpression.cpp403 Stream &error_stream, in EvaluateExpression() argument
433 error_stream << " Evaluated this expression after applying Fix-It(s):\n"; in EvaluateExpression()
434 error_stream << " " << m_fixed_expression << "\n"; in EvaluateExpression()
484 error_stream.PutCString("(void)\n"); in EvaluateExpression()
494 error_stream.PutCString("error: "); in EvaluateExpression()
495 error_stream.Write(error_cstr, error_cstr_len); in EvaluateExpression()
497 error_stream.EOL(); in EvaluateExpression()
499 error_stream.PutCString("error: unknown error\n"); in EvaluateExpression()
506 error_stream.Printf("error: unknown error\n"); in EvaluateExpression()
H A DCommandObjectDWIMPrint.cpp197 Stream &error_stream = result.GetErrorStream(); in DoExecute() local
198 error_stream << " Evaluated this expression after applying Fix-It(s):\n"; in DoExecute()
199 error_stream << " " << fixed_expression << "\n"; in DoExecute()
H A DCommandObjectExpression.h83 /// \param error_stream Contains error messages that should be displayed to
91 Stream &error_stream, CommandReturnObject &result);
H A DCommandObjectWatchpointCommand.cpp252 StreamSP error_stream(debugger.GetAsyncErrorStream()); in WatchpointOptionsCallbackFunction() local
254 result.SetImmediateErrorStream(error_stream); in WatchpointOptionsCallbackFunction()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp64 llvm::raw_string_ostream error_stream(error); in SetupLogging() local
71 channel_then_categories.GetArgumentArrayRef(), error_stream); in SetupLogging()
74 channel, error_stream.str()); in SetupLogging()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp227 llvm::raw_ostream &error_stream) { in EnableLogChannel() argument
230 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel); in EnableLogChannel()
235 : GetFlags(error_stream, *iter, categories); in EnableLogChannel()
242 llvm::raw_ostream &error_stream) { in DisableLogChannel() argument
245 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel); in DisableLogChannel()
250 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
257 llvm::raw_ostream &error_stream) { in DumpLogChannel() argument
260 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel); in DumpLogChannel()
264 error_stream << llvm::formatv( in DumpLogChannel()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h201 llvm::raw_ostream &error_stream);
205 llvm::raw_ostream &error_stream);
209 llvm::raw_ostream &error_stream);
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp160 llvm::raw_svector_ostream error_stream(error_msg); in getCC1Arguments() local
161 Jobs.Print(error_stream, "; ", true); in getCC1Arguments()
163 << error_stream.str(); in getCC1Arguments()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp619 StreamSP error_stream(debugger.GetAsyncErrorStream()); in BreakpointOptionsCallbackFunction() local
621 result.SetImmediateErrorStream(error_stream); in BreakpointOptionsCallbackFunction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h241 llvm::raw_ostream &error_stream);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp440 StreamString error_stream; in AttachWaitProcess() local
441 error_stream.Format( in AttachWaitProcess()
445 error_stream.Format("{0}, ", loop_process_list[i].GetProcessID()); in AttachWaitProcess()
447 error_stream.Format("{0}.", loop_process_list.back().GetProcessID()); in AttachWaitProcess()
450 error.SetErrorString(error_stream.GetString()); in AttachWaitProcess()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1637 llvm::raw_ostream &error_stream) { in EnableLog() argument
1663 error_stream << "Unable to open log file '" << log_file in EnableLog()
1680 error_stream); in EnableLog()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp1672 llvm::raw_string_ostream error_stream(error); in EnableLog() local
1675 eLogHandlerStream, error_stream); in EnableLog()