/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ClangUtilityFunction.cpp | 149 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()
|
D | ClangUserExpression.cpp | 660 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/ |
D | CommandReturnObject.cpp | 119 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()
|
D | CommandObject.cpp | 131 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/ |
D | CommandObjectExpression.cpp | 466 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()
|
D | CommandObjectFrame.cpp | 614 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()
|
D | CommandObjectWatchpoint.cpp | 963 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()
|
D | CommandObjectMemory.cpp | 675 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()
|
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()
|
/external/llvm-project/lldb/source/API/ |
D | SBCommandReturnObject.cpp | 362 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/ |
D | Driver.cpp | 668 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/ |
D | SBCommandReturnObject.i | 74 SetError (const char *error_cstr);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBCommandReturnObject.h | 106 void SetError(const char *error_cstr);
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDP.cpp | 967 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/ |
D | CommandReturnObject.h | 129 void SetError(llvm::StringRef error_cstr);
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | lldb-vscode.cpp | 1176 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/ |
D | Disassembler.cpp | 1063 if (const char *error_cstr = error.AsCString()) in ParseInstructions() local 1064 error_strm_ptr->Printf("error: %s\n", error_cstr); in ParseInstructions()
|