Home | History | Annotate | Download | only in WebCoreSQLite3

Lines Matching refs:sqlite3_pcache

5021 ** The sqlite3_pcache type is opaque.  It is implemented by
5024 ** sqlite3_pcache object except by holding and passing pointers
5029 typedef struct sqlite3_pcache sqlite3_pcache;
5141 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5150 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5151 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5152 int (*xPagecount)(sqlite3_pcache*);
5153 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5154 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
5155 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
5156 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
5157 void (*xDestroy)(sqlite3_pcache*);