Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp64 return llvm::make_error<PythonException>(); in As()
378 return llvm::make_error<PythonException>(); in FromUTF8()
917 const char *PythonException::toCString() const { in toCString()
923 PythonException::PythonException(const char *caller) { in PythonException() function in PythonException
947 void PythonException::Restore() { in Restore()
956 PythonException::~PythonException() { in ~PythonException()
963 void PythonException::log(llvm::raw_ostream &OS) const { OS << toCString(); } in log()
965 std::error_code PythonException::convertToErrorCode() const { in convertToErrorCode()
969 bool PythonException::Matches(PyObject *exc) const { in Matches()
986 std::string PythonException::ReadBacktrace() const { in ReadBacktrace()
[all …]
H A DPythonDataObjects.h72 class PythonException; variable
176 return llvm::make_error<PythonException>(s);
641 class PythonException : public llvm::ErrorInfo<PythonException> {
649 PythonException(const char *caller = nullptr);
651 ~PythonException() override;
683 expected.takeError(), [](PythonException &E) { E.Restore(); },
H A DScriptInterpreterPython.cpp1007 [&](PythonException &E) { in ExecuteOneLineWithReturn()
1130 llvm::handleErrors(return_value.takeError(), [&](PythonException &E) { in ExecuteMultipleLines()
2123 [&](PythonException &E) { in BreakpointCallbackFunction()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-wrapper.swig258 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); },
302 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); },