Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp65 return llvm::make_error<PythonException>(); in As()
388 return llvm::make_error<PythonException>(); in FromUTF8()
956 const char *PythonException::toCString() const { in toCString()
962 PythonException::PythonException(const char *caller) { in PythonException() function in PythonException
986 void PythonException::Restore() { in Restore()
995 PythonException::~PythonException() { in ~PythonException()
1008 bool PythonException::Matches(PyObject *exc) const { in Matches()
1025 std::string PythonException::ReadBacktrace() const { in ReadBacktrace()
1046 char PythonException::ID = 0;
1158 return llvm::make_error<PythonException>(); in Create()
[all …]
H A DPythonDataObjects.h72 class PythonException; variable
176 return llvm::make_error<PythonException>(s);
657 class PythonException : public llvm::ErrorInfo<PythonException> {
665 PythonException(const char *caller = nullptr);
667 ~PythonException() override;
699 expected.takeError(), [](PythonException &E) { E.Restore(); },
H A DScriptInterpreterPython.cpp1016 [&](PythonException &E) { in ExecuteOneLineWithReturn()
1139 llvm::handleErrors(return_value.takeError(), [&](PythonException &E) { in ExecuteMultipleLines()
2057 [&](PythonException &E) { in BreakpointCallbackFunction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h129 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); }, in CreatePluginObject()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig259 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); },