Lines Matching refs:sqlite3_pcache
5584 ** The sqlite3_pcache type is opaque. It is implemented by
5587 ** sqlite3_pcache object except by holding and passing pointers
5592 typedef struct sqlite3_pcache sqlite3_pcache;
5729 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5738 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5739 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5740 int (*xPagecount)(sqlite3_pcache*);
5741 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5742 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
5743 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
5744 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
5745 void (*xDestroy)(sqlite3_pcache*);