Lines Matching refs:error_sp
99 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerActivated() local
100 error_sp->Printf("REPL requires a running target process.\n"); in IOHandlerActivated()
184 lldb::StreamFileSP &error_sp) { in ReadCode() argument
188 error_sp->Printf("no such file at path '%s'\n", path.c_str()); in ReadCode()
192 error_sp->Printf("could not read file at path '%s'\n", path.c_str()); in ReadCode()
198 error_sp->Printf("file at path '%s' too large: " in ReadCode()
205 error_sp->Printf("could not create buffer for file at path '%s'\n", in ReadCode()
215 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete() local
252 result.SetImmediateErrorStream(error_sp); in IOHandlerInputComplete()
295 if (!ReadCode(path, code, error_sp)) { in IOHandlerInputComplete()
310 const bool colorize_err = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
352 error_sp->PutCString("(void)\n"); in IOHandlerInputComplete()
371 bool useColors = error_sp->GetFile().GetIsTerminalWithColors(); in IOHandlerInputComplete()
378 error_sp->Printf("%s\n", error.AsCString()); in IOHandlerInputComplete()
385 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
386 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
388 error_sp->Printf("Execution interrupted. "); in IOHandlerInputComplete()
390 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
391 error_sp->Printf("Enter code to recover and continue.\nEnter LLDB " in IOHandlerInputComplete()
399 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete()
400 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
404 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_NORMAL)); in IOHandlerInputComplete()
417 error_sp->Printf("error: timeout\n"); in IOHandlerInputComplete()
419 error_sp->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
423 error_sp->Printf("error: could not fetch result -- %s\n", in IOHandlerInputComplete()
428 error_sp->Printf("error: stopped for debug -- %s\n", in IOHandlerInputComplete()
433 error_sp->Printf("error: expression thread vanished -- %s\n", in IOHandlerInputComplete()
459 error_sp->Printf("error: couldn't open %s: %s\n", in IOHandlerInputComplete()
479 error_sp->Printf( in IOHandlerInputComplete()