| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangModulesDeclVendor.cpp | 52 void DumpDiagnostics(Stream &error_stream); 74 Stream &error_stream) override; 77 Stream &error_stream) override; 135 error_stream.PutCString(diag.second); in DumpDiagnostics() 136 error_stream.PutChar('\n'); in DumpDiagnostics() 188 Stream &error_stream) { in AddModule() argument 250 diagnostic_consumer->DumpDiagnostics(error_stream); in AddModule() 262 diagnostic_consumer->DumpDiagnostics(error_stream); in AddModule() 263 error_stream.Printf("error: Couldn't load submodule %s\n", in AddModule() 303 Stream &error_stream) { in AddModulesForCompileUnit() argument [all …]
|
| H A D | ClangModulesDeclVendor.h | 58 Stream &error_stream) = 0; 83 Stream &error_stream) = 0;
|
| H A D | IRForTarget.h | 98 lldb_private::Stream &error_stream, 632 lldb_private::Stream &error_stream);
|
| H A D | IRForTarget.cpp | 72 lldb_private::Stream &error_stream, in IRForTarget() argument 77 m_error_stream(error_stream), in IRForTarget() 1709 lldb_private::Stream &error_stream) { in UnfoldConstant() argument 1726 error_stream.Printf("error [IRForTarget internal]: Unhandled " in UnfoldConstant() 1747 entry_instruction_finder, error_stream)) in UnfoldConstant() 1788 entry_instruction_finder, error_stream)) in UnfoldConstant() 1793 error_stream.Printf( in UnfoldConstant() 1801 error_stream.PutCString("error: Capturing non-local variables in " in UnfoldConstant() 1808 error_stream.Printf( in UnfoldConstant()
|
| H A D | ClangExpressionParser.cpp | 120 StreamString error_stream; in moduleImport() local 1123 Stream *error_stream = NULL; in PrepareForExecution() local 1125 error_stream = target->GetDebugger().GetErrorFile().get(); in PrepareForExecution() 1128 *execution_unit_sp, *error_stream, in PrepareForExecution()
|
| H A D | ClangUserExpression.cpp | 368 StreamString error_stream; in SetupDeclVendor() local 371 *sc.comp_unit, modules_for_macros, error_stream); in SetupDeclVendor()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonExceptionState.cpp | 109 llvm::raw_string_ostream error_stream(error_string); in Format() local 110 error_stream << m_value.Str().GetString() << "\n"; in Format() 114 error_stream << backtrace << "\n"; in Format() 119 error_stream << "An error occurred while retrieving the backtrace: " in Format() 122 return error_stream.str(); in Format()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/ |
| H A D | LLDBServerUtilities.cpp | 50 llvm::raw_string_ostream error_stream(error); in SetupLogging() local 57 channel_then_categories.GetArgumentArrayRef(), error_stream); in SetupLogging() 60 channel, error_stream.str()); in SetupLogging()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectLog.cpp | 173 llvm::raw_string_ostream error_stream(error); in DoExecute() local 176 error_stream); in DoExecute() 177 result.GetErrorStream() << error_stream.str(); in DoExecute() 239 llvm::raw_string_ostream error_stream(error); in DoExecute() local 241 error_stream)) in DoExecute() 243 result.GetErrorStream() << error_stream.str(); in DoExecute()
|
| H A D | CommandObjectExpression.cpp | 388 Stream *error_stream, in EvaluateExpression() argument 446 if (error_stream && !m_fixed_expression.empty() && in EvaluateExpression() 449 error_stream->Printf( in EvaluateExpression() 488 error_stream->PutCString("(void)\n"); in EvaluateExpression() 500 error_stream->PutCString("error: "); in EvaluateExpression() 501 error_stream->Write(error_cstr, error_cstr_len); in EvaluateExpression() 503 error_stream->EOL(); in EvaluateExpression() 505 error_stream->PutCString("error: unknown error\n"); in EvaluateExpression() 514 error_stream->Printf("error: invalid execution context for expression\n"); in EvaluateExpression()
|
| H A D | CommandObjectExpression.h | 73 Stream *error_stream,
|
| H A D | CommandObjectWatchpointCommand.cpp | 292 StreamSP error_stream(debugger.GetAsyncErrorStream()); in WatchpointOptionsCallbackFunction() local 294 result.SetImmediateErrorStream(error_stream); in WatchpointOptionsCallbackFunction()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Log.cpp | 207 llvm::ArrayRef<const char *> categories, llvm::raw_ostream &error_stream) { in EnableLogChannel() argument 210 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel); in EnableLogChannel() 215 : GetFlags(error_stream, *iter, categories); in EnableLogChannel() 222 llvm::raw_ostream &error_stream) { in DisableLogChannel() argument 225 error_stream << llvm::formatv("Invalid log channel '{0}'.\n", channel); in DisableLogChannel() 230 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | cmdline.c | 116 if (error_stream) in svn_cmdline_init() 127 if (error_stream) in svn_cmdline_init() 128 setvbuf(error_stream, NULL, _IONBF, 0); in svn_cmdline_init() 187 if (error_stream) in svn_cmdline_init() 206 fprintf(error_stream, in svn_cmdline_init() 219 if (error_stream) in svn_cmdline_init() 223 fprintf(error_stream, in svn_cmdline_init() 239 if (error_stream) in svn_cmdline_init() 248 if (error_stream) in svn_cmdline_init() 249 fprintf(error_stream, in svn_cmdline_init() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | Log.h | 113 llvm::raw_ostream &error_stream); 117 llvm::raw_ostream &error_stream);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | ExpressionSourceCode.cpp | 222 StreamString error_stream; in GetText() local 225 *sc.comp_unit, modules_for_macros, error_stream); in GetText()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 97 llvm::raw_svector_ostream error_stream(error_msg); in getCC1Arguments() local 98 Jobs.Print(error_stream, "; ", true); in getCC1Arguments() 100 << error_stream.str(); in getCC1Arguments()
|
| /freebsd-12.1/contrib/subversion/subversion/include/ |
| H A D | svn_cmdline.h | 61 FILE *error_stream);
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | corefile.c | 228 error_stream (tmp_stream); in memory_error()
|
| H A D | defs.h | 910 extern NORETURN void error_stream (struct ui_file *) ATTR_NORETURN;
|
| H A D | utils.c | 609 error_stream (tmp_stream); in verror() 660 error_stream (struct ui_file *stream) in error_stream() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 660 StreamSP error_stream(debugger.GetAsyncErrorStream()); in BreakpointOptionsCallbackFunction() local 662 result.SetImmediateErrorStream(error_stream); in BreakpointOptionsCallbackFunction()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Debugger.h | 221 llvm::raw_ostream &error_stream);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Debugger.cpp | 1247 llvm::raw_ostream &error_stream) { in EnableLog() argument 1271 error_stream << "Unable to open log file: " << ec.message(); in EnableLog() 1286 error_stream); in EnableLog()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBDebugger.cpp | 1264 llvm::raw_string_ostream error_stream(error); in EnableLog() local 1266 log_options, error_stream); in EnableLog()
|