Searched refs:error_cstr (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp149 const char *error_cstr = jit_error.AsCString(); local
150 if (error_cstr && error_cstr[0]) {
151 diagnostic_manager.Printf(eDiagnosticSeverityError, "%s", error_cstr);
H A DClangUserExpression.cpp644 const char *error_cstr = jit_error.AsCString(); local
645 if (error_cstr && error_cstr[0])
646 diagnostic_manager.PutString(eDiagnosticSeverityError, error_cstr);
659 const char *error_cstr = static_init_error.AsCString(); local
660 if (error_cstr && error_cstr[0])
663 error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandReturnObject.cpp110 const char *error_cstr = error.AsCString(); local
111 if (error_cstr == nullptr)
112 error_cstr = fallback_error_cstr;
113 SetError(error_cstr);
H A DCommandObject.cpp121 const char *error_cstr = error.AsCString(); local
122 if (error_cstr) {
124 result.AppendError(error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBCommandReturnObject.i74 SetError (const char *error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp465 const char *error_cstr = result_valobj_sp->GetError().AsCString(); local
466 if (error_cstr && error_cstr[0]) {
467 const size_t error_cstr_len = strlen(error_cstr);
468 const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n';
469 if (strstr(error_cstr, "error:") != error_cstr)
471 error_stream->Write(error_cstr, error_cstr_len);
H A DCommandObjectMemory.cpp676 const char *error_cstr = error.AsCString(); variable
677 if (error_cstr && error_cstr[0]) {
678 result.AppendError(error_cstr);
H A DCommandObjectWatchpoint.cpp913 const char *error_cstr = error.AsCString(nullptr); variable
914 if (error_cstr)
915 result.GetErrorStream().Printf("error: %s\n", error_cstr);
H A DCommandObjectFrame.cpp607 const char *error_cstr = error.AsCString(nullptr); variable
608 if (error_cstr)
609 result.GetErrorStream().Printf("error: %s\n", error_cstr);
H A DCommandObjectTarget.cpp2571 const char *error_cstr = error.AsCString(); variable
2572 if (error_cstr)
2573 result.AppendError(error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandReturnObject.h106 void SetError(const char *error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp362 void SBCommandReturnObject::SetError(const char *error_cstr) { argument
364 error_cstr);
366 if (error_cstr)
367 ref().SetError(error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h128 void SetError(llvm::StringRef error_cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp668 const char *error_cstr = error.GetCString(); local
669 if ((error_cstr != nullptr) && (error_cstr[0] != 0))
670 WithColor::error() << error_cstr << '\n';
887 if (const char *error_cstr = error.GetCString())
888 WithColor::error() << error_cstr << '\n';
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1213 const char *error_cstr = error.AsCString(); local
1214 if (error_cstr) {
1215 error_strm_ptr->Printf("error: %s\n", error_cstr);

Completed in 313 milliseconds