Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1521 llvm::Expected<PythonObject> expected_py_return = in OSPlugin_RegisterInfo() local
1524 if (!expected_py_return) { in OSPlugin_RegisterInfo()
1525 llvm::consumeError(expected_py_return.takeError()); in OSPlugin_RegisterInfo()
1529 PythonObject py_return = std::move(expected_py_return.get()); in OSPlugin_RegisterInfo()
1554 llvm::Expected<PythonObject> expected_py_return = in OSPlugin_ThreadsInfo() local
1557 if (!expected_py_return) { in OSPlugin_ThreadsInfo()
1558 llvm::consumeError(expected_py_return.takeError()); in OSPlugin_ThreadsInfo()
1562 PythonObject py_return = std::move(expected_py_return.get()); in OSPlugin_ThreadsInfo()
1588 llvm::Expected<PythonObject> expected_py_return = in OSPlugin_RegisterContextData() local
1591 if (!expected_py_return) { in OSPlugin_RegisterContextData()
[all …]