Home
last modified time | relevance | path

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

/freebsd/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(lldb::eSeverityError, "%s", error_cstr); in Install()
H A DClangUserExpression.cpp611 const char *error_cstr = jit_error.AsCString(); in TryParse() local
612 if (error_cstr && error_cstr[0]) in TryParse()
613 diagnostic_manager.PutString(lldb::eSeverityError, error_cstr); in TryParse()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp356 void SBCommandReturnObject::SetError(const char *error_cstr) { in SetError() argument
357 LLDB_INSTRUMENT_VA(this, error_cstr); in SetError()
359 if (error_cstr) in SetError()
360 ref().AppendError(error_cstr); in SetError()
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp620 const char *error_cstr = error.GetCString(); in MainLoop() local
621 if ((error_cstr != nullptr) && (error_cstr[0] != 0)) in MainLoop()
622 WithColor::error() << error_cstr << '\n'; in MainLoop()
832 if (const char *error_cstr = error.GetCString()) in main() local
833 WithColor::error() << error_cstr << '\n'; in main()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandReturnObject.h137 void SetError(const char *error_cstr);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp864 const char *error_cstr = error.AsCString(nullptr); in DoExecute() local
865 if (error_cstr) in DoExecute()
866 result.AppendError(error_cstr); in DoExecute()
H A DCommandObjectMemory.cpp667 const char *error_cstr = error.AsCString(); in DoExecute() local
668 if (error_cstr && error_cstr[0]) { in DoExecute()
669 result.AppendError(error_cstr); in DoExecute()
H A DCommandObjectFrame.cpp634 if (auto error_cstr = error.AsCString(nullptr)) in DoExecute() local
635 result.AppendError(error_cstr); in DoExecute()
H A DCommandObjectTarget.cpp2835 const char *error_cstr = error.AsCString(); in DoExecute() local
2836 if (error_cstr) in DoExecute()
2837 result.AppendError(error_cstr); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1134 if (const char *error_cstr = error.AsCString()) in AppendInstructions() local
1135 error_strm_ptr->Printf("error: %s\n", error_cstr); in AppendInstructions()