Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp76 if (PythonBytes::Check(m_py_obj)) in GetObjectType()
204 PythonBytes::PythonBytes() : PythonObject() {} in PythonBytes() function in PythonBytes
206 PythonBytes::PythonBytes(llvm::ArrayRef<uint8_t> bytes) : PythonObject() { in PythonBytes() function in PythonBytes
210 PythonBytes::PythonBytes(const uint8_t *bytes, size_t length) : PythonObject() { in PythonBytes() function in PythonBytes
214 PythonBytes::PythonBytes(PyRefType type, PyObject *py_obj) : PythonObject() { in PythonBytes() function in PythonBytes
218 PythonBytes::PythonBytes(const PythonBytes &object) : PythonObject(object) {} in PythonBytes() function in PythonBytes
220 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 …]
H A DPythonDataObjects.h30 class PythonBytes; variable
200 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);
H A DScriptInterpreterPython.cpp1776 PythonBytes result(PyRefType::Borrowed, py_return.get()); in OSPlugin_RegisterContextData()