Home
last modified time | relevance | path

Searched refs:pysqlite_Row (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Modules/_sqlite/
Drow.c35 row_clear(pysqlite_Row *self) in row_clear()
43 row_traverse(pysqlite_Row *self, visitproc visit, void *arg) in row_traverse()
76 pysqlite_Row *self; in pysqlite_row_new_impl()
80 self = (pysqlite_Row *) type->tp_alloc(type, 0); in pysqlite_row_new_impl()
90 PyObject* pysqlite_row_item(pysqlite_Row* self, Py_ssize_t idx) in pysqlite_row_item()
125 pysqlite_row_subscript(pysqlite_Row *self, PyObject *idx) in pysqlite_row_subscript()
170 pysqlite_row_length(pysqlite_Row* self) in pysqlite_row_length()
182 pysqlite_row_keys_impl(pysqlite_Row *self) in pysqlite_row_keys_impl()
204 static PyObject* pysqlite_iter(pysqlite_Row* self) in pysqlite_iter()
209 static Py_hash_t pysqlite_row_hash(pysqlite_Row *self) in pysqlite_row_hash()
[all …]
Drow.h34 } pysqlite_Row; typedef
/external/python/cpython2/Modules/_sqlite/
Drow.c28 void pysqlite_row_dealloc(pysqlite_Row* self) in pysqlite_row_dealloc()
39 pysqlite_Row *self; in pysqlite_row_new()
60 self = (pysqlite_Row *) type->tp_alloc(type, 0); in pysqlite_row_new()
73 PyObject* pysqlite_row_item(pysqlite_Row* self, Py_ssize_t idx) in pysqlite_row_item()
80 PyObject* pysqlite_row_subscript(pysqlite_Row* self, PyObject* idx) in pysqlite_row_subscript()
155 Py_ssize_t pysqlite_row_length(pysqlite_Row* self, PyObject* args, PyObject* kwargs) in pysqlite_row_length()
160 PyObject* pysqlite_row_keys(pysqlite_Row* self, PyObject* args, PyObject* kwargs) in pysqlite_row_keys()
181 static int pysqlite_row_print(pysqlite_Row* self, FILE *fp, int flags) in pysqlite_row_print()
186 static PyObject* pysqlite_iter(pysqlite_Row* self) in pysqlite_iter()
191 static long pysqlite_row_hash(pysqlite_Row *self) in pysqlite_row_hash()
[all …]
Drow.h33 } pysqlite_Row; typedef
/external/python/cpython3/Modules/_sqlite/clinic/
Drow.c.h49 pysqlite_row_keys_impl(pysqlite_Row *self);
52 pysqlite_row_keys(pysqlite_Row *self, PyObject *Py_UNUSED(ignored)) in pysqlite_row_keys()