Home
last modified time | relevance | path

Searched refs:sqlite3_pcache (Results 1 – 2 of 2) sorted by relevance

/third_party/sqlite/include/
Dsqlite3.h8535 typedef struct sqlite3_pcache sqlite3_pcache; typedef
8718 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
8719 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8720 int (*xPagecount)(sqlite3_pcache*);
8721 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8722 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);
8723 void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*,
8725 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
8726 void (*xDestroy)(sqlite3_pcache*);
8727 void (*xShrink)(sqlite3_pcache*);
[all …]
/third_party/sqlite/src/
Dsqlite3.c8848 typedef struct sqlite3_pcache sqlite3_pcache; typedef
9031 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
9032 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9033 int (*xPagecount)(sqlite3_pcache*);
9034 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9035 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);
9036 void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*,
9038 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
9039 void (*xDestroy)(sqlite3_pcache*);
9040 void (*xShrink)(sqlite3_pcache*);
[all …]