Home
last modified time | relevance | path

Searched refs:error_sp (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DREPL.cpp105 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFile()); in IOHandlerActivated() local
106 error_sp->Printf("REPL requires a running target process.\n"); in IOHandlerActivated()
190 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFile()); in IOHandlerInputComplete() local
227 result.SetImmediateErrorStream(error_sp); in IOHandlerInputComplete()
326 error_sp->PutCString("(void)\n"); in IOHandlerInputComplete()
352 error_sp->Printf("%s\n", error.AsCString()); in IOHandlerInputComplete()
360 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
362 error_sp->Printf("Execution interrupted. "); in IOHandlerInputComplete()
374 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete()
391 error_sp->Printf("error: timeout\n"); in IOHandlerInputComplete()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp445 bp_loc_sp->GetDescription(error_sp.get(), in PerformAction()
448 error_sp->EOL(); in PerformAction()
454 error_sp->PutCString(err_str); in PerformAction()
455 error_sp->EOL(); in PerformAction()
456 error_sp->Flush(); in PerformAction()
837 StreamSP error_sp = debugger.GetAsyncErrorStream(); in PerformAction() local
838 error_sp->Printf( in PerformAction()
842 error_sp->EOL(); in PerformAction()
847 error_sp->PutCString(err_str); in PerformAction()
848 error_sp->EOL(); in PerformAction()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp257 error_sp->Flush(); in IOHandlerInputComplete()
261 error_sp->Flush(); in IOHandlerInputComplete()
266 error_sp->Flush(); in IOHandlerInputComplete()
270 error_sp->Flush(); in IOHandlerInputComplete()
273 error_sp->Printf( in IOHandlerInputComplete()
275 error_sp->Flush(); in IOHandlerInputComplete()
494 error_sp->Flush(); in IOHandlerInputComplete()
498 error_sp->Flush(); in IOHandlerInputComplete()
502 error_sp->Flush(); in IOHandlerInputComplete()
505 error_sp->Printf( in IOHandlerInputComplete()
[all …]
H A DCommandObjectCommands.cpp1648 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); in IOHandlerInputComplete() local
1659 error_sp->Printf("error: unable to obtain a function name, didn't " in IOHandlerInputComplete()
1661 error_sp->Flush(); in IOHandlerInputComplete()
1671 error_sp->Printf("error: unable to add selected command, didn't " in IOHandlerInputComplete()
1673 error_sp->Flush(); in IOHandlerInputComplete()
1677 error_sp->Printf( in IOHandlerInputComplete()
1679 error_sp->Flush(); in IOHandlerInputComplete()
1682 error_sp->Printf("error: empty function, didn't add python command.\n"); in IOHandlerInputComplete()
1683 error_sp->Flush(); in IOHandlerInputComplete()
1686 error_sp->Printf( in IOHandlerInputComplete()
[all …]
H A DCommandObjectExpression.cpp528 StreamFileSP error_sp(io_handler.GetErrorStreamFile()); in IOHandlerInputComplete() local
530 EvaluateExpression(line.c_str(), output_sp.get(), error_sp.get()); in IOHandlerInputComplete()
533 if (error_sp) in IOHandlerInputComplete()
534 error_sp->Flush(); in IOHandlerInputComplete()
H A DCommandObjectTarget.cpp4702 StreamFileSP error_sp(io_handler.GetErrorStreamFile()); in IOHandlerInputComplete() local
4703 if (error_sp) { in IOHandlerInputComplete()
4704 error_sp->Printf("error: stop hook #%" PRIu64 in IOHandlerInputComplete()
4707 error_sp->Flush(); in IOHandlerInputComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DIOHandler.h62 const lldb::StreamFileSP &error_sp, uint32_t flags);
352 const lldb::StreamFileSP &error_sp, uint32_t flags,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp489 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); in IOHandlerInputComplete() local
490 if (error_sp) { in IOHandlerInputComplete()
491 error_sp->Printf("Warning: No command attached to breakpoint.\n"); in IOHandlerInputComplete()
492 error_sp->Flush(); in IOHandlerInputComplete()
511 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); in IOHandlerInputComplete() local
512 if (error_sp) { in IOHandlerInputComplete()
513 error_sp->Printf("Warning: No command attached to breakpoint.\n"); in IOHandlerInputComplete()
514 error_sp->Flush(); in IOHandlerInputComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp1576 StreamSP error_sp(GetAsyncErrorStream()); in DefaultEventHandler() local
1577 if (error_sp) { in DefaultEventHandler()
1578 error_sp->PutCString(data); in DefaultEventHandler()
1579 error_sp->Flush(); in DefaultEventHandler()
H A DIOHandler.cpp86 const lldb::StreamFileSP &error_sp, uint32_t flags) in IOHandler() argument
88 m_error_sp(error_sp), m_popped(false), m_flags(flags), m_type(type), in IOHandler()
281 const lldb::StreamFileSP &error_sp, uint32_t flags, in IOHandlerEditline() argument
286 : IOHandler(debugger, type, input_sp, output_sp, error_sp, flags), in IOHandlerEditline()