Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1205 auto pybuffer = Take<PythonObject>(pybuffer_p); in Write() local
1207 auto bytes_written = As<long long>(m_py_obj.CallMethod("write", pybuffer)); in Write()
1230 auto pybuffer = PythonBuffer::Create(pybuffer_obj.get()); in Read() local
1231 if (!pybuffer) in Read()
1232 return Status(pybuffer.takeError()); in Read()
1233 memcpy(buf, pybuffer.get().get().buf, pybuffer.get().get().len); in Read()
1234 num_bytes = pybuffer.get().get().len; in Read()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-typemaps.swig475 // These two pybuffer macros are copied out of swig/Lib/python/pybuffer.i,