Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangUtilityFunction.cpp149 const char *error_cstr = jit_error.AsCString(); in Install() local
150 if (error_cstr && error_cstr[0]) { in Install()
151 diagnostic_manager.Printf(eDiagnosticSeverityError, "%s", error_cstr); in Install()
DClangUserExpression.cpp660 const char *error_cstr = jit_error.AsCString(); in Parse() local
661 if (error_cstr && error_cstr[0]) in Parse()
662 diagnostic_manager.PutString(eDiagnosticSeverityError, error_cstr); in Parse()
675 const char *error_cstr = static_init_error.AsCString(); in Parse() local
676 if (error_cstr && error_cstr[0]) in Parse()
679 error_cstr); in Parse()
/external/llvm-project/lldb/source/Interpreter/
DCommandReturnObject.cpp119 const char *error_cstr = error.AsCString(); in SetError() local
120 if (error_cstr == nullptr) in SetError()
121 error_cstr = fallback_error_cstr; in SetError()
122 SetError(error_cstr); in SetError()
DCommandObject.cpp131 const char *error_cstr = error.AsCString(); in ParseOptions() local
132 if (error_cstr) { in ParseOptions()
134 result.AppendError(error_cstr); in ParseOptions()
/external/llvm-project/lldb/source/Commands/
DCommandObjectExpression.cpp466 const char *error_cstr = result_valobj_sp->GetError().AsCString(); in EvaluateExpression() local
467 if (error_cstr && error_cstr[0]) { in EvaluateExpression()
468 const size_t error_cstr_len = strlen(error_cstr); in EvaluateExpression()
469 const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n'; in EvaluateExpression()
470 if (strstr(error_cstr, "error:") != error_cstr) in EvaluateExpression()
472 error_stream.Write(error_cstr, error_cstr_len); in EvaluateExpression()
DCommandObjectFrame.cpp614 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local
615 if (error_cstr) in DoExecute()
616 result.GetErrorStream().Printf("error: %s\n", error_cstr); in DoExecute()
DCommandObjectWatchpoint.cpp963 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local
964 if (error_cstr) in DoExecute()
965 result.GetErrorStream().Printf("error: %s\n", error_cstr); in DoExecute()
DCommandObjectMemory.cpp675 const char *error_cstr = error.AsCString(); in DoExecute() local
676 if (error_cstr && error_cstr[0]) { in DoExecute()
677 result.AppendError(error_cstr); in DoExecute()
DCommandObjectTarget.cpp2592 const char *error_cstr = error.AsCString(); in DoExecute() local
2593 if (error_cstr) in DoExecute()
2594 result.AppendError(error_cstr); in DoExecute()
/external/llvm-project/lldb/source/API/
DSBCommandReturnObject.cpp362 void SBCommandReturnObject::SetError(const char *error_cstr) { in SetError() argument
364 error_cstr); in SetError()
366 if (error_cstr) in SetError()
367 ref().SetError(error_cstr); in SetError()
/external/llvm-project/lldb/tools/driver/
DDriver.cpp668 const char *error_cstr = error.GetCString(); in MainLoop() local
669 if ((error_cstr != nullptr) && (error_cstr[0] != 0)) in MainLoop()
670 WithColor::error() << error_cstr << '\n'; in MainLoop()
936 if (const char *error_cstr = error.GetCString()) in main() local
937 WithColor::error() << error_cstr << '\n'; in main()
/external/llvm-project/lldb/bindings/interface/
DSBCommandReturnObject.i74 SetError (const char *error_cstr);
/external/llvm-project/lldb/include/lldb/API/
DSBCommandReturnObject.h106 void SetError(const char *error_cstr);
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp967 const char *error_cstr = error.AsCString(); in DoExecute() local
968 if (error_cstr && error_cstr[0]) in DoExecute()
969 result.AppendError(error_cstr); in DoExecute()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandReturnObject.h129 void SetError(llvm::StringRef error_cstr);
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp1176 const char *error_cstr = error.GetCString(); in request_evaluate() local
1177 if (error_cstr && error_cstr[0]) in request_evaluate()
1178 EmplaceSafeString(response, "message", std::string(error_cstr)); in request_evaluate()
/external/llvm-project/lldb/source/Core/
DDisassembler.cpp1063 if (const char *error_cstr = error.AsCString()) in ParseInstructions() local
1064 error_strm_ptr->Printf("error: %s\n", error_cstr); in ParseInstructions()