Searched refs:error_sp (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp442 StreamSP error_sp = debugger.GetAsyncErrorStream (); local
443 error_sp->Printf ("Stopped due to an error evaluating condition of breakpoint ");
444 bp_loc_sp->GetDescription (error_sp.get(), eDescriptionLevelBrief);
445 error_sp->Printf (": \"%s\"",
447 error_sp->EOL();
452 error_sp->PutCString (err_str);
453 error_sp->EOL();
454 error_sp->Flush();
753 StreamSP error_sp = debugger.GetAsyncErrorStream (); local
754 error_sp
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.cpp374 StreamFileSP error_sp(io_handler.GetErrorStreamFile());
378 error_sp.get());
381 if (error_sp)
382 error_sp->Flush();
H A DCommandObjectType.cpp221 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); local
244 error_sp->Printf ("unable to obtain a valid function name from the script interpreter.\n");
245 error_sp->Flush();
268 error_sp->Printf ("error: %s", error.AsCString());
269 error_sp->Flush();
289 error_sp->Printf ("error: %s", error.AsCString());
290 error_sp->Flush();
295 error_sp->Printf ("error: %s", error.AsCString());
296 error_sp->Flush();
303 error_sp
511 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); local
[all...]
H A DCommandObjectCommands.cpp1672 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); local
1687 error_sp->Printf ("error: unable to obtain a function name, didn't add python command.\n");
1688 error_sp->Flush();
1701 error_sp->Printf ("error: unable to add selected command, didn't add python command.\n");
1702 error_sp->Flush();
1708 error_sp->Printf ("error: unable to create function, didn't add python command.\n");
1709 error_sp->Flush();
1714 error_sp->Printf ("error: empty function, didn't add python command.\n");
1715 error_sp->Flush();
1720 error_sp
[all...]
H A DCommandObjectTarget.cpp4965 StreamFileSP error_sp(io_handler.GetErrorStreamFile());
4966 if (error_sp)
4968 error_sp->Printf("error: stop hook #%" PRIu64 " aborted, no commands.\n", m_stop_hook_sp->GetID());
4969 error_sp->Flush();
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DIOHandler.h42 const lldb::StreamFileSP &error_sp,
388 const lldb::StreamFileSP &error_sp,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp271 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); local
272 if (error_sp)
274 error_sp->Printf ("Warning: No command attached to breakpoint.\n");
275 error_sp->Flush();
297 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); local
298 if (error_sp)
300 error_sp->Printf ("Warning: No command attached to breakpoint.\n");
301 error_sp->Flush();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp3072 StreamFileSP error_sp (GetErrorFile());
3073 if (error_sp)
3076 error_sp->PutCString(data);
3077 error_sp->Flush();
H A DIOHandler.cpp51 const lldb::StreamFileSP &error_sp,
56 m_error_sp (error_sp),
330 const lldb::StreamFileSP &error_sp,
336 IOHandler (debugger, input_sp, output_sp, error_sp, flags),
48 IOHandler(Debugger &debugger, const lldb::StreamFileSP &input_sp, const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, uint32_t flags) argument
327 IOHandlerEditline(Debugger &debugger, const lldb::StreamFileSP &input_sp, const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, uint32_t flags, const char *editline_name, const char *prompt, bool multi_line, IOHandlerDelegate &delegate) argument

Completed in 226 milliseconds