HomeSort by relevance Sort by last modified time
    Searched refs:pysqlite_Cache (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cache.h 59 } pysqlite_Cache;
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);
cache.c 58 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs)
90 void pysqlite_cache_dealloc(pysqlite_Cache* self)
116 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args)
215 PyObject* pysqlite_cache_display(pysqlite_Cache* self, PyObject* args)
322 sizeof(pysqlite_Cache), /* tp_basicsize */
connection.h 71 pysqlite_Cache* statement_cache;
connection.c 158 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
229 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self);
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cache.h 59 } pysqlite_Cache;
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);
cache.c 58 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs)
90 void pysqlite_cache_dealloc(pysqlite_Cache* self)
116 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args)
215 PyObject* pysqlite_cache_display(pysqlite_Cache* self, PyObject* args)
322 sizeof(pysqlite_Cache), /* tp_basicsize */
connection.h 71 pysqlite_Cache* statement_cache;
connection.c 161 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
232 (pysqlite_Cache *)PyObject_CallFunction((PyObject *)&pysqlite_CacheType, "O", self));
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cache.h 59 } pysqlite_Cache;
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);
cache.c 57 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs)
89 void pysqlite_cache_dealloc(pysqlite_Cache* self)
115 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args)
214 PyObject* pysqlite_cache_display(pysqlite_Cache* self, PyObject* args)
303 sizeof(pysqlite_Cache), /* tp_basicsize */
connection.h 66 pysqlite_Cache* statement_cache;
connection.c 145 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
    [all...]

Completed in 221 milliseconds