Searched refs:PythonByteArray (Results 1 – 2 of 2) sorted by relevance
79 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 PythonByteArray276 : PythonByteArray(bytes.data(), bytes.size()) {} in PythonByteArray()278 PythonByteArray::PythonByteArray(const uint8_t *bytes, size_t length) { in PythonByteArray() function in PythonByteArray283 PythonByteArray::PythonByteArray(PyRefType type, PyObject *o) { in PythonByteArray() function in PythonByteArray287 PythonByteArray::PythonByteArray(const PythonBytes &object) in PythonByteArray() function in PythonByteArray290 PythonByteArray::~PythonByteArray() {} in ~PythonByteArray()292 bool PythonByteArray::Check(PyObject *py_obj) { in Check()303 if (!PythonByteArray::Check(py_obj)) { in Reset()[all …]
226 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;