Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1109 class PythonBuffer { class
1111 PythonBuffer &operator=(const PythonBuffer &) = delete;
1112 PythonBuffer(const PythonBuffer &) = delete;
1114 static Expected<PythonBuffer> Create(PythonObject &obj, in Create()
1120 return PythonBuffer(py_buffer); in Create()
1123 PythonBuffer(PythonBuffer &&other) { in PythonBuffer() function in __anonf7d06da40311::PythonBuffer
1128 ~PythonBuffer() { in ~PythonBuffer()
1137 PythonBuffer(const Py_buffer &py_buffer) : m_buffer(py_buffer) {} in PythonBuffer() function in __anonf7d06da40311::PythonBuffer
1230 auto pybuffer = PythonBuffer::Create(pybuffer_obj.get()); in Read()