Home
last modified time | relevance | path

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

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/dextIR/
H A DValueIR.py17 error_string: str = None,
24 self.error_string = error_string
30 if self.error_string is not None:
31 return prefix + self.error_string
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/
H A DLLDB.py267 error_string = str(result.error)
270 could_evaluate = not any(s in error_string for s in [
279 is_optimized_away = any(s in error_string for s in [
283 is_irretrievable = any(s in error_string for s in [
292 assert error_string == 'success', (error_string, expression, value)
295 if error_string == 'success':
296 error_string = None
310 error_string=error_string,
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-wrapper.swig210 std::string &error_string) {
223 error_string.append("could not find script class: ");
224 error_string.append(python_class_name);
236 error_string.append(E.message());
254 std::string &error_string) {
267 error_string.append("could not find script class: ");
268 error_string.append(python_class_name);
278 error_string.append(E.message());
308 error_string.append(python_class_name);
320 error_string.append(E.message());
[all …]
/llvm-project-15.0.7/lldb/test/API/commands/expression/fixits/
H A DTestFixIts.py75 error_string = value.GetError().GetCString()
77 error_string.find("fixed expression suggested:") != -1,
80 error_string.find("my_pointer->second.a") != -1,
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h61 std::string &error_string);
66 std::string &error_string);
97 const StructuredDataImpl &args_data, std::string &error_string,
H A DScriptedThreadPythonInterface.cpp39 std::string error_string; in CreatePluginObject() local
49 args_impl, error_string); in CreatePluginObject()
H A DScriptedProcessPythonInterface.cpp40 std::string error_string; in CreatePluginObject() local
47 args_impl, error_string); in CreatePluginObject()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonTestSuite.cpp91 const StructuredDataImpl &args_data, std::string &error_string, in LLDBSwigPythonCreateScriptedThreadPlan() argument
199 std::string &error_string) { in LLDBSwigPythonCreateScriptedProcess() argument
206 std::string &error_string) { in LLDBSwigPythonCreateScriptedThread() argument
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A Dimtest.c177 char *error_string(mp_result res);
379 error_string(imath_errno)); in run_test()
419 char *error_string(mp_result res) { in error_string() function
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/commands/
H A DDexExpectStepOrder.py35 error_string=None,
H A DDexUnreachable.py48 error_string=None,
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Ddbgeng.py183 error_string="",
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRExecutionUnit.cpp263 std::string error_string; in GetRunnableInfo() local
283 .setErrorStr(&error_string) in GetRunnableInfo()
304 error_string.c_str()); in GetRunnableInfo()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/
H A DVisualStudio.py372 error_string=None,
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp2540 const char *error_string = error.AsCString(); in LaunchPrivate() local
2541 if (error_string == nullptr) in LaunchPrivate()
2542 error_string = "launch failed"; in LaunchPrivate()
2543 SetExitStatus(-1, error_string); in LaunchPrivate()
2869 const char *error_string = error.AsCString(); in Attach() local
2870 if (error_string == nullptr) in Attach()
2871 error_string = "attach failed"; in Attach()
2873 SetExitStatus(-1, error_string); in Attach()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1622 std::string error_string; in GetMemoryRegionInfo() local
1624 error_extractor.GetHexByteString(error_string); in GetMemoryRegionInfo()
1625 error.SetErrorString(error_string.c_str()); in GetMemoryRegionInfo()
H A DProcessGDBRemote.cpp3223 const char *error_string = error.AsCString(); in EstablishConnectionIfNeeded() local
3224 if (error_string == nullptr) in EstablishConnectionIfNeeded()
3225 error_string = "unable to launch " DEBUGSERVER_BASENAME; in EstablishConnectionIfNeeded()