Home
last modified time | relevance | path

Searched refs:PyBuffer_Check (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dbufferobject.h15 #define PyBuffer_Check(op) (Py_TYPE(op) == &PyBuffer_Type) macro
/external/python/cpython2/Modules/_sqlite/
Dstatement.c131 } else if (PyBuffer_Check(parameter)) { in pysqlite_statement_bind_parameter()
210 || PyUnicode_CheckExact(obj) || PyBuffer_Check(obj)) { in _need_adapt()
Dconnection.c564 } else if (PyBuffer_Check(py_val)) { in _pysqlite_set_result()
/external/python/cpython2/Objects/
Dbufferobject.c138 if ( PyBuffer_Check(base) && (((PyBufferObject *)base)->b_base) ) { in buffer_from_object()
/external/python/cpython2/Doc/c-api/
Dbuffer.rst388 .. c:function:: int PyBuffer_Check(PyObject *p)
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c1219 if (PyBuffer_Check(value)) { in CharArray_set_raw()