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