Home
last modified time | relevance | path

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

/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