Home
last modified time | relevance | path

Searched defs:sqlite3_pcache_methods (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dsqlite.h.in8835 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8836 struct sqlite3_pcache_methods { struct
8837 void *pArg;
8838 int (*xInit)(void*);
8839 void (*xShutdown)(void*);
8840 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8841 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8842 int (*xPagecount)(sqlite3_pcache*);
8844 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
8846 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
[all …]