Searched refs:PythonBytes (Results 1 – 3 of 3) sorted by relevance
76 if (PythonBytes::Check(m_py_obj)) in GetObjectType()204 PythonBytes::PythonBytes() : PythonObject() {} in PythonBytes() function in PythonBytes206 PythonBytes::PythonBytes(llvm::ArrayRef<uint8_t> bytes) : PythonObject() { in PythonBytes() function in PythonBytes210 PythonBytes::PythonBytes(const uint8_t *bytes, size_t length) : PythonObject() { in PythonBytes() function in PythonBytes214 PythonBytes::PythonBytes(PyRefType type, PyObject *py_obj) : PythonObject() { in PythonBytes() function in PythonBytes218 PythonBytes::PythonBytes(const PythonBytes &object) : PythonObject(object) {} in PythonBytes() function in PythonBytes220 PythonBytes::~PythonBytes() {} in ~PythonBytes()222 bool PythonBytes::Check(PyObject *py_obj) { in Check()233 if (!PythonBytes::Check(py_obj)) { in Reset()243 llvm::ArrayRef<uint8_t> PythonBytes::GetBytes() const { in GetBytes()[all …]
30 class PythonBytes; variable200 class PythonBytes : public PythonObject {202 PythonBytes();203 explicit PythonBytes(llvm::ArrayRef<uint8_t> bytes);204 PythonBytes(const uint8_t *bytes, size_t length);205 PythonBytes(PyRefType type, PyObject *o);206 PythonBytes(const PythonBytes &object);208 ~PythonBytes() override;232 PythonByteArray(const PythonBytes &object);
1776 PythonBytes result(PyRefType::Borrowed, py_return.get()); in OSPlugin_RegisterContextData()