Home
last modified time | relevance | path

Searched refs:error_str (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMultiword.cpp120 const char *error_str = nullptr; in LoadUserSubcommand() local
122 error_str = "sub-command already exists"; in LoadUserSubcommand()
124 error_str = "can't replace a builtin subcommand"; in LoadUserSubcommand()
126 if (error_str) { in LoadUserSubcommand()
127 return llvm::createStringError(llvm::inconvertibleErrorCode(), error_str); in LoadUserSubcommand()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DVSCode.cpp474 std::string error_str; in GetNextObject() local
475 llvm::raw_string_ostream strm(error_str); in GetNextObject()
478 *log << "error: failed to parse JSON: " << error_str << std::endl in GetNextObject()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A Ddebugserver.cpp1562 const char *error_str = remote->Context().LaunchStatus().AsString(); in main() local
1564 error_str ? error_str : "unknown error."); in main()
1655 const char *error_str = remote->Context().LaunchStatus().AsString(); in main() local
1657 error_str ? error_str : "unknown error."); in main()
H A DDNB.cpp154 const char *error_str = strerror(error_no); in kqueue_thread() local
155 if (error_str == NULL) in kqueue_thread()
156 error_str = "Unknown error"; in kqueue_thread()
158 error_str); in kqueue_thread()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp96 std::string error_str = toString(std::move(E)); in IOHandlerIsInputComplete() local
98 return error_str.find("<eof>") == std::string::npos; in IOHandlerIsInputComplete()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp701 char error_str[64]; in Codegen() local
702 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); in Codegen()
703 return ErrorV(error_str); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp719 char error_str[64]; in Codegen() local
720 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); in Codegen()
721 return ErrorV(error_str); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1161 char error_str[64]; in Codegen() local
1162 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); in Codegen()
1163 return ErrorV(error_str); in Codegen()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp616 std::string error_str = llvm::toString(utility_fn_or_error.takeError()); in MakeLoadImageUtilityFunction() local
619 error_str.c_str()); in MakeLoadImageUtilityFunction()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3328 char error_str[1024]; in MonitorDebugserverProcess() local
3333 ::snprintf(error_str, sizeof(error_str), in MonitorDebugserverProcess()
3336 ::snprintf(error_str, sizeof(error_str), in MonitorDebugserverProcess()
3339 ::snprintf(error_str, sizeof(error_str), in MonitorDebugserverProcess()
3344 process_sp->SetExitStatus(-1, error_str); in MonitorDebugserverProcess()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h282 std::string &error_str, in CreateScriptedThreadPlan() argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h83 std::string &error_str,
H A DScriptInterpreterPython.cpp1642 std::string &error_str, lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
1660 error_str, thread_plan_sp); in CreateScriptedThreadPlan()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm171 const char *error_str =
173 if (error_str) {
174 open_app_error_string = error_str;
178 getpid(), error_str);
189 error_str ? error_str : "<unknown error>",