Lines Matching refs:error_sp
106 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerActivated() local
107 error_sp->Printf("REPL requires a running target process.\n"); in IOHandlerActivated()
192 lldb::StreamFileSP &error_sp) { in ReadCode() argument
196 error_sp->Printf("no such file at path '%s'\n", path.c_str()); in ReadCode()
200 error_sp->Printf("could not read file at path '%s'\n", path.c_str()); in ReadCode()
206 error_sp->Printf("file at path '%s' too large: " in ReadCode()
213 error_sp->Printf("could not create buffer for file at path '%s'\n", in ReadCode()
223 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete() local
260 result.SetImmediateErrorStream(error_sp); in IOHandlerInputComplete()
303 if (!ReadCode(path, code, error_sp)) { in IOHandlerInputComplete()
319 const bool colorize_err = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
351 *error_sp << llvm::toString(std::move(err)) << "\n"; in IOHandlerInputComplete()
363 error_sp->PutCString("(void)\n"); in IOHandlerInputComplete()
382 bool useColors = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
389 error_sp->Printf("%s\n", error.AsCString()); in IOHandlerInputComplete()
396 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
397 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
399 error_sp->Printf("Execution interrupted. "); in IOHandlerInputComplete()
401 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
402 error_sp->Printf("Enter code to recover and continue.\nEnter LLDB " in IOHandlerInputComplete()
410 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
411 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
415 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
428 error_sp->Printf("error: timeout\n"); in IOHandlerInputComplete()
430 error_sp->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
434 error_sp->Printf("error: could not fetch result -- %s\n", in IOHandlerInputComplete()
439 error_sp->Printf("error: stopped for debug -- %s\n", in IOHandlerInputComplete()
444 error_sp->Printf("error: expression thread vanished -- %s\n", in IOHandlerInputComplete()
470 error_sp->Printf("error: couldn't open %s: %s\n", in IOHandlerInputComplete()
490 error_sp->Printf( in IOHandlerInputComplete()