Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedProcessPythonInterface.cpp101 Status py_error; in CreateBreakpoint() local
103 Dispatch("create_breakpoint", py_error, addr, error); in CreateBreakpoint()
106 if (py_error.Fail()) in CreateBreakpoint()
107 error = py_error; in CreateBreakpoint()
117 Status py_error; in ReadMemoryAtAddress() local
119 "read_memory_at_address", py_error, address, size, error); in ReadMemoryAtAddress()
122 if (py_error.Fail()) in ReadMemoryAtAddress()
123 error = py_error; in ReadMemoryAtAddress()
130 Status py_error; in WriteMemoryAtAddress() local
138 if (py_error.Fail()) in WriteMemoryAtAddress()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
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()