Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.cpp
H A DPythonDataObjects.cpp1046 Status py_error, base_error; in Close() local
1051 py_error = Status::FromError(r.takeError()); in Close()
1055 if (py_error.Fail()) in Close()
1056 return py_error.Clone(); in Close()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedProcessPythonInterface.cpp108 Status py_error; in CreateBreakpoint() local
110 Dispatch("create_breakpoint", py_error, addr, error); in CreateBreakpoint()
113 if (py_error.Fail()) in CreateBreakpoint()
114 error = std::move(py_error); in CreateBreakpoint()
125 Status py_error; in ReadMemoryAtAddress() local
127 "read_memory_at_address", py_error, address, size, error); in ReadMemoryAtAddress()
130 if (py_error.Fail()) in ReadMemoryAtAddress()
131 error = std::move(py_error); in ReadMemoryAtAddress()
138 Status py_error; in WriteMemoryAtAddress() local
140 Dispatch("write_memory_at_address", py_error, addr, data_sp, error); in WriteMemoryAtAddress()
[all …]