Searched refs:error_stream (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.h49 /// \param[in] error_stream
59 Stream &error_stream) = 0;
71 /// \param[in] error_stream
82 Stream &error_stream) = 0;
H A DClangModulesDeclVendor.cpp63 void DumpDiagnostics(Stream &error_stream);
102 Stream &error_stream) override;
105 Stream &error_stream) override;
169 void StoringDiagnosticConsumer::DumpDiagnostics(Stream &error_stream) { argument
173 error_stream.PutCString(diag.second);
174 error_stream.PutChar('\n');
284 Stream &error_stream) {
288 error_stream.PutCString("error: Couldn't load a module because the module "
325 error_stream.Printf("error: No module map file in %s\n",
344 error_stream
282 AddModule(const SourceModule &module, ModuleVector *exported_modules, Stream &error_stream) argument
428 AddModulesForCompileUnit( CompileUnit &cu, ClangModulesDeclVendor::ModuleVector &exported_modules, Stream &error_stream) argument
[all...]
H A DIRForTarget.h80 /// \param[in] error_stream
87 lldb_private::Stream &error_stream,
389 lldb_private::Stream &error_stream);
H A DIRForTarget.cpp75 lldb_private::Stream &error_stream,
78 m_decl_map(decl_map), m_error_stream(error_stream),
1314 lldb_private::Stream &error_stream) {
1331 error_stream.Printf("error [IRForTarget internal]: Unhandled "
1352 entry_instruction_finder, error_stream))
1387 entry_instruction_finder, error_stream))
1392 error_stream.Printf(
1400 error_stream.PutCString("error: Capturing non-local variables in "
1407 error_stream.Printf(
72 IRForTarget(lldb_private::ClangExpressionDeclMap *decl_map, bool resolve_vars, lldb_private::IRExecutionUnit &execution_unit, lldb_private::Stream &error_stream, const char *func_name) argument
1310 UnfoldConstant(Constant *old_constant, llvm::Function *llvm_function, FunctionValueCache &value_maker, FunctionValueCache &entry_instruction_finder, lldb_private::Stream &error_stream) argument
H A DClangExpressionSourceCode.cpp388 StreamString error_stream; local
391 *sc.comp_unit, modules_for_macros, error_stream);
H A DClangUserExpression.cpp374 StreamString error_stream;
379 error_stream))
383 if (!error_stream.Empty()) {
388 error_stream.GetString());
H A DClangExpressionParser.cpp134 StreamString error_stream; variable
1374 StreamString error_stream; local
1376 *execution_unit_sp, error_stream,
1380 err.SetErrorString(error_stream.GetString());
/freebsd-current/contrib/llvm-project/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp64 llvm::raw_string_ostream error_stream(error);
71 channel_then_categories.GetArgumentArrayRef(), error_stream);
74 channel, error_stream.str());
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDWIMPrint.cpp183 Stream &error_stream = result.GetErrorStream(); local
184 error_stream << " Evaluated this expression after applying Fix-It(s):\n";
185 error_stream << " " << fixed_expression << "\n";
H A DCommandObjectExpression.h83 /// \param error_stream Contains error messages that should be displayed to
91 Stream &error_stream, CommandReturnObject &result);
H A DCommandObjectLog.cpp204 llvm::raw_string_ostream error_stream(error);
208 error_stream);
209 result.GetErrorStream() << error_stream.str();
274 llvm::raw_string_ostream error_stream(error);
276 error_stream))
278 result.GetErrorStream() << error_stream.str();
428 llvm::raw_string_ostream error_stream(error);
429 if (Log::DumpLogChannel(channel, *stream_up, error_stream)) {
433 result.GetErrorStream() << error_stream.str();
H A DCommandObjectExpression.cpp415 Stream &error_stream,
445 error_stream << " Evaluated this expression after applying Fix-It(s):\n";
446 error_stream << " " << m_fixed_expression << "\n";
492 error_stream.PutCString("(void)\n");
502 error_stream.PutCString("error: ");
503 error_stream.Write(error_cstr, error_cstr_len);
505 error_stream.EOL();
507 error_stream.PutCString("error: unknown error\n");
514 error_stream.Printf("error: unknown error\n");
413 EvaluateExpression(llvm::StringRef expr, Stream &output_stream, Stream &error_stream, CommandReturnObject &result) argument
H A DCommandObjectWatchpointCommand.cpp264 StreamSP error_stream(debugger.GetAsyncErrorStream());
266 result.SetImmediateErrorStream(error_stream);
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp226 llvm::raw_ostream &error_stream) {
229 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel);
234 : GetFlags(error_stream, *iter, categories);
241 llvm::raw_ostream &error_stream) {
244 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel);
249 : GetFlags(error_stream, *iter, categories);
256 llvm::raw_ostream &error_stream) {
259 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel);
263 error_stream << llvm::formatv(
223 EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, uint32_t log_options, llvm::StringRef channel, llvm::ArrayRef<const char *> categories, llvm::raw_ostream &error_stream) argument
239 DisableLogChannel(llvm::StringRef channel, llvm::ArrayRef<const char *> categories, llvm::raw_ostream &error_stream) argument
254 DumpLogChannel(llvm::StringRef channel, llvm::raw_ostream &output_stream, llvm::raw_ostream &error_stream) argument
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/DumpTool/
H A DClangSrcLocDump.cpp126 llvm::raw_svector_ostream error_stream(error_msg);
127 Jobs.Print(error_stream, "; ", true);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h184 llvm::raw_ostream &error_stream);
188 llvm::raw_ostream &error_stream);
192 llvm::raw_ostream &error_stream);
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp627 StreamSP error_stream(debugger.GetAsyncErrorStream());
629 result.SetImmediateErrorStream(error_stream);
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp160 llvm::raw_svector_ostream error_stream(error_msg);
161 Jobs.Print(error_stream, "; ", true);
163 << error_stream.str();
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h248 llvm::raw_ostream &error_stream);
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp1672 llvm::raw_string_ostream error_stream(error);
1675 eLogHandlerStream, error_stream);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp440 StreamString error_stream; local
441 error_stream.Format(
445 error_stream.Format("{0}, ", loop_process_list[i].GetProcessID());
447 error_stream.Format("{0}.", loop_process_list.back().GetProcessID());
450 error.SetErrorString(error_stream.GetString());
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1597 llvm::raw_ostream &error_stream) {
1623 error_stream << "Unable to open log file '" << log_file
1640 error_stream);
1593 EnableLog(llvm::StringRef channel, llvm::ArrayRef<const char *> categories, llvm::StringRef log_file, uint32_t log_options, size_t buffer_size, LogHandlerKind log_handler_kind, llvm::raw_ostream &error_stream) argument

Completed in 318 milliseconds