Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonExceptionState.cpp22 PythonExceptionState::PythonExceptionState(bool restore_on_exit) in PythonExceptionState() function in PythonExceptionState
27 PythonExceptionState::~PythonExceptionState() { in ~PythonExceptionState()
32 void PythonExceptionState::Acquire(bool restore_on_exit) { in Acquire()
55 void PythonExceptionState::Restore() { in Restore()
69 void PythonExceptionState::Discard() { in Discard()
75 void PythonExceptionState::Reset() { in Reset()
84 bool PythonExceptionState::IsError() const { in IsError()
94 std::string PythonExceptionState::Format() const { in Format()
96 PythonExceptionState state(true); in Format()
106 PythonExceptionState bt_error_state(false); in Format()
[all …]
H A DPythonExceptionState.h19 class PythonExceptionState {
21 explicit PythonExceptionState(bool restore_on_exit);
22 ~PythonExceptionState();
H A DScriptInterpreterPython.cpp1252 PythonExceptionState exception_state(!options.GetMaskoutErrors()); in ExecuteMultipleLines()