Home
last modified time | relevance | path

Searched refs:error_cstr (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp166 const char *error_cstr = jit_error.AsCString(); in Install() local
167 if (error_cstr && error_cstr[0]) { in Install()
168 diagnostic_manager.Printf(eDiagnosticSeverityError, "%s", error_cstr); in Install()
H A DClangUserExpression.cpp615 const char *error_cstr = jit_error.AsCString(); in TryParse() local
616 if (error_cstr && error_cstr[0]) in TryParse()
617 diagnostic_manager.PutString(eDiagnosticSeverityError, error_cstr); in TryParse()
711 const char *error_cstr = static_init_error.AsCString(); in Parse() local
712 if (error_cstr && error_cstr[0]) in Parse()
715 error_cstr); in Parse()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp465 const char *error_cstr = result_valobj_sp->GetError().AsCString(); in EvaluateExpression() local
466 if (error_cstr && error_cstr[0]) { in EvaluateExpression()
467 const size_t error_cstr_len = strlen(error_cstr); in EvaluateExpression()
468 const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n'; in EvaluateExpression()
469 if (strstr(error_cstr, "error:") != error_cstr) in EvaluateExpression()
471 error_stream.Write(error_cstr, error_cstr_len); in EvaluateExpression()
H A DCommandObjectFrame.cpp607 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local
608 if (error_cstr) in DoExecute()
609 result.GetErrorStream().Printf("error: %s\n", error_cstr); in DoExecute()
H A DCommandObjectMemory.cpp664 const char *error_cstr = error.AsCString(); in DoExecute() local
665 if (error_cstr && error_cstr[0]) { in DoExecute()
666 result.AppendError(error_cstr); in DoExecute()
H A DCommandObjectWatchpoint.cpp942 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local
943 if (error_cstr) in DoExecute()
944 result.AppendError(error_cstr); in DoExecute()
H A DCommandObjectTarget.cpp2533 const char *error_cstr = error.AsCString(); in DoExecute() local
2534 if (error_cstr) in DoExecute()
2535 result.AppendError(error_cstr); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp361 void SBCommandReturnObject::SetError(const char *error_cstr) { in SetError() argument
363 error_cstr); in SetError()
365 if (error_cstr) in SetError()
366 ref().AppendError(error_cstr); in SetError()
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp669 const char *error_cstr = error.GetCString(); in MainLoop() local
670 if ((error_cstr != nullptr) && (error_cstr[0] != 0)) in MainLoop()
671 WithColor::error() << error_cstr << '\n'; in MainLoop()
941 if (const char *error_cstr = error.GetCString()) in main() local
942 WithColor::error() << error_cstr << '\n'; in main()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBCommandReturnObject.i74 SetError (const char *error_cstr);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandReturnObject.h106 void SetError(const char *error_cstr);
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp128 const char *error_cstr = error.AsCString(); in ParseOptions() local
129 if (error_cstr) { in ParseOptions()
131 result.AppendError(error_cstr); in ParseOptions()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1061 if (const char *error_cstr = error.AsCString()) in ParseInstructions() local
1062 error_strm_ptr->Printf("error: %s\n", error_cstr); in ParseInstructions()