Lines Matching refs:error_sp

104   lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP());  in IOHandlerActivated()  local
105 error_sp->Printf("REPL requires a running target process.\n"); in IOHandlerActivated()
189 lldb::StreamFileSP &error_sp) { in ReadCode() argument
193 error_sp->Printf("no such file at path '%s'\n", path.c_str()); in ReadCode()
197 error_sp->Printf("could not read file at path '%s'\n", path.c_str()); in ReadCode()
203 error_sp->Printf("file at path '%s' too large: " in ReadCode()
210 error_sp->Printf("could not create buffer for file at path '%s'\n", in ReadCode()
220 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete() local
257 result.SetImmediateErrorStream(error_sp); in IOHandlerInputComplete()
300 if (!ReadCode(path, code, error_sp)) { in IOHandlerInputComplete()
315 const bool colorize_err = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
357 error_sp->PutCString("(void)\n"); in IOHandlerInputComplete()
376 bool useColors = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
383 error_sp->Printf("%s\n", error.AsCString()); in IOHandlerInputComplete()
390 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
391 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
393 error_sp->Printf("Execution interrupted. "); in IOHandlerInputComplete()
395 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
396 error_sp->Printf("Enter code to recover and continue.\nEnter LLDB " in IOHandlerInputComplete()
404 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
405 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
409 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
422 error_sp->Printf("error: timeout\n"); in IOHandlerInputComplete()
424 error_sp->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
428 error_sp->Printf("error: could not fetch result -- %s\n", in IOHandlerInputComplete()
433 error_sp->Printf("error: stopped for debug -- %s\n", in IOHandlerInputComplete()
438 error_sp->Printf("error: expression thread vanished -- %s\n", in IOHandlerInputComplete()
464 error_sp->Printf("error: couldn't open %s: %s\n", in IOHandlerInputComplete()
484 error_sp->Printf( in IOHandlerInputComplete()