Searched refs:pysqlite_Cache (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/ |
D | cache.h | 59 } pysqlite_Cache; typedef 67 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs); 68 void pysqlite_cache_dealloc(pysqlite_Cache* self); 69 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args);
|
D | cache.c | 58 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs) in pysqlite_cache_init() 90 void pysqlite_cache_dealloc(pysqlite_Cache* self) in pysqlite_cache_dealloc() 116 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args) in pysqlite_cache_get() 215 PyObject* pysqlite_cache_display(pysqlite_Cache* self, PyObject* args) in pysqlite_cache_display() 322 sizeof(pysqlite_Cache), /* tp_basicsize */
|
D | connection.h | 71 pysqlite_Cache* statement_cache;
|
D | connection.c | 158 …self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi… in pysqlite_connection_init() 229 …self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O"… in pysqlite_flush_statement_cache()
|