/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangUtilityFunction.cpp | 168 const char *error_cstr = jit_error.AsCString(); in Install() local 169 if (error_cstr && error_cstr[0]) { in Install() 170 diagnostic_manager.Printf(eDiagnosticSeverityError, "%s", error_cstr); in Install()
|
H A D | ClangUserExpression.cpp | 612 const char *error_cstr = jit_error.AsCString(); in TryParse() local 613 if (error_cstr && error_cstr[0]) in TryParse() 614 diagnostic_manager.PutString(eDiagnosticSeverityError, error_cstr); in TryParse() 715 const char *error_cstr = static_init_error.AsCString(); in Parse() local 716 if (error_cstr && error_cstr[0]) in Parse() 719 error_cstr); in Parse()
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectExpression.cpp | 453 const char *error_cstr = result_valobj_sp->GetError().AsCString(); in EvaluateExpression() local 454 if (error_cstr && error_cstr[0]) { in EvaluateExpression() 455 const size_t error_cstr_len = strlen(error_cstr); in EvaluateExpression() 456 const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n'; in EvaluateExpression() 457 if (strstr(error_cstr, "error:") != error_cstr) in EvaluateExpression() 459 error_stream.Write(error_cstr, error_cstr_len); in EvaluateExpression()
|
H A D | CommandObjectWatchpoint.cpp | 938 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local 939 if (error_cstr) in DoExecute() 940 result.AppendError(error_cstr); in DoExecute()
|
H A D | CommandObjectMemory.cpp | 678 const char *error_cstr = error.AsCString(); in DoExecute() local 679 if (error_cstr && error_cstr[0]) { in DoExecute() 680 result.AppendError(error_cstr); in DoExecute()
|
H A D | CommandObjectFrame.cpp | 610 if (auto error_cstr = error.AsCString(nullptr)) in DoExecute() local 611 result.AppendError(error_cstr); in DoExecute()
|
H A D | CommandObjectTarget.cpp | 2592 const char *error_cstr = error.AsCString(); in DoExecute() local 2593 if (error_cstr) in DoExecute() 2594 result.AppendError(error_cstr); in DoExecute()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBCommandReturnObject.cpp | 335 void SBCommandReturnObject::SetError(const char *error_cstr) { in SetError() argument 336 LLDB_INSTRUMENT_VA(this, error_cstr); in SetError() 338 if (error_cstr) in SetError() 339 ref().AppendError(error_cstr); in SetError()
|
/openbsd/gnu/llvm/lldb/tools/driver/ |
H A D | Driver.cpp | 629 const char *error_cstr = error.GetCString(); in MainLoop() local 630 if ((error_cstr != nullptr) && (error_cstr[0] != 0)) in MainLoop() 631 WithColor::error() << error_cstr << '\n'; in MainLoop() 817 if (const char *error_cstr = error.GetCString()) in main() local 818 WithColor::error() << error_cstr << '\n'; in main()
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBCommandReturnObject.i | 74 SetError (const char *error_cstr);
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | ProcessKDP.cpp | 940 const char *error_cstr = error.AsCString(); in DoExecute() local 941 if (error_cstr && error_cstr[0]) in DoExecute() 942 result.AppendError(error_cstr); in DoExecute()
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBCommandReturnObject.h | 106 void SetError(const char *error_cstr);
|
/openbsd/gnu/llvm/lldb/source/Interpreter/ |
H A D | CommandObject.cpp | 130 const char *error_cstr = error.AsCString(); in ParseOptions() local 131 if (error_cstr) { in ParseOptions() 133 result.AppendError(error_cstr); in ParseOptions()
|
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/ |
H A D | lldb-vscode.cpp | 1241 const char *error_cstr = error.GetCString(); in request_evaluate() local 1242 if (error_cstr && error_cstr[0]) in request_evaluate() 1243 EmplaceSafeString(response, "message", std::string(error_cstr)); in request_evaluate()
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | Disassembler.cpp | 1098 if (const char *error_cstr = error.AsCString()) in ParseInstructions() local 1099 error_strm_ptr->Printf("error: %s\n", error_cstr); in ParseInstructions()
|