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/Interfaces/
H A DScriptedProcessPythonInterface.cpp103 Status py_error; in CreateBreakpoint() local
105 Dispatch("create_breakpoint", py_error, addr, error); in CreateBreakpoint()
108 if (py_error.Fail()) in CreateBreakpoint()
109 error = py_error; in CreateBreakpoint()
120 Status py_error; in ReadMemoryAtAddress() local
122 "read_memory_at_address", py_error, address, size, error); in ReadMemoryAtAddress()
125 if (py_error.Fail()) in ReadMemoryAtAddress()
126 error = py_error; in ReadMemoryAtAddress()
133 Status py_error; in WriteMemoryAtAddress() local
135 Dispatch("write_memory_at_address", py_error, addr, data_sp, error); in WriteMemoryAtAddress()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.cpp
H A DPythonDataObjects.cpp1103 Status py_error, base_error; in Close() local
1108 py_error = Status(r.takeError()); in Close()
1111 if (py_error.Fail()) in Close()
1112 return py_error; in Close()