Lines Matching refs:sqlite3_pcache

6444 ** The sqlite3_pcache type is opaque.  It is implemented by
6447 ** sqlite3_pcache object except by holding and passing pointers
6452 typedef struct sqlite3_pcache sqlite3_pcache;
6600 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6609 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6610 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6611 int (*xPagecount)(sqlite3_pcache*);
6612 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6613 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
6614 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
6615 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
6616 void (*xDestroy)(sqlite3_pcache*);
35204 sqlite3_pcache *pCache; /* Pluggable cache module */
35392 /* If the pluggable cache (sqlite3_pcache*) has not been allocated,
35396 sqlite3_pcache *p;
35786 ** sqlite3_pcache interface). It also contains part of the implementation
35896 ** opaque sqlite3_pcache* handles.
36531 /******** sqlite3_pcache Methods **********************************************/
36534 ** Implementation of the sqlite3_pcache.xInit method.
36550 ** Implementation of the sqlite3_pcache.xShutdown method.
36561 ** Implementation of the sqlite3_pcache.xCreate method.
36565 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){
36609 return (sqlite3_pcache *)pCache;
36613 ** Implementation of the sqlite3_pcache.xCachesize method.
36617 static void pcache1Cachesize(sqlite3_pcache *p, int nMax){
36632 ** Implementation of the sqlite3_pcache.xPagecount method.
36634 static int pcache1Pagecount(sqlite3_pcache *p){
36644 ** Implementation of the sqlite3_pcache.xFetch method.
36697 static void *pcache1Fetch(sqlite3_pcache *p, unsigned int iKey, int createFlag){
36800 ** Implementation of the sqlite3_pcache.xUnpin method.
36804 static void pcache1Unpin(sqlite3_pcache *p, void *pPg, int reuseUnlikely){
36838 ** Implementation of the sqlite3_pcache.xRekey method.
36841 sqlite3_pcache *p,
36874 ** Implementation of the sqlite3_pcache.xTruncate method.
36880 static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){
36891 ** Implementation of the sqlite3_pcache.xDestroy method.
36895 static void pcache1Destroy(sqlite3_pcache *p){