Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp79 if (PythonByteArray::Check(m_py_obj)) in GetObjectType()
192 return PythonByteArray(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
275 PythonByteArray::PythonByteArray(llvm::ArrayRef<uint8_t> bytes) in PythonByteArray() function in PythonByteArray
276 : PythonByteArray(bytes.data(), bytes.size()) {} in PythonByteArray()
278 PythonByteArray::PythonByteArray(const uint8_t *bytes, size_t length) { in PythonByteArray() function in PythonByteArray
283 PythonByteArray::PythonByteArray(PyRefType type, PyObject *o) { in PythonByteArray() function in PythonByteArray
287 PythonByteArray::PythonByteArray(const PythonBytes &object) in PythonByteArray() function in PythonByteArray
290 PythonByteArray::~PythonByteArray() {} in ~PythonByteArray()
292 bool PythonByteArray::Check(PyObject *py_obj) { in Check()
303 if (!PythonByteArray::Check(py_obj)) { in Reset()
[all …]
H A DPythonDataObjects.h226 class PythonByteArray : public PythonObject {
228 PythonByteArray();
229 explicit PythonByteArray(llvm::ArrayRef<uint8_t> bytes);
230 PythonByteArray(const uint8_t *bytes, size_t length);
231 PythonByteArray(PyRefType type, PyObject *o);
232 PythonByteArray(const PythonBytes &object);
234 ~PythonByteArray() override;