Home
last modified time | relevance | path

Searched refs:pysqlite_CacheType (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcache.c319 PyTypeObject pysqlite_CacheType = { variable
366 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
373 rc = PyType_Ready(&pysqlite_CacheType); in pysqlite_cache_setup_types()
Dcache.h62 extern PyTypeObject pysqlite_CacheType;
Dmodule.c326 Py_INCREF(&pysqlite_CacheType); in init_sqlite3()
329 PyModule_AddObject(module, "Cache", (PyObject*) &pysqlite_CacheType); in init_sqlite3()
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()