Home
last modified time | relevance | path

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/
Dcache.h59 } 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);
Dcache.c58 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 */
Dconnection.h71 pysqlite_Cache* statement_cache;
Dconnection.c158 …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()