Searched defs:sqlite3_pcache_methods (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/sqlite3/ |
| H A D | sqlite3.h | 9115 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9116 struct sqlite3_pcache_methods { struct 9117 void *pArg; 9118 int (*xInit)(void*); 9119 void (*xShutdown)(void*); 9120 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9121 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9122 int (*xPagecount)(sqlite3_pcache*); 9124 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 9126 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|
| H A D | sqlite3.c | 9428 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9429 struct sqlite3_pcache_methods { struct 9430 void *pArg; 9431 int (*xInit)(void*); 9432 void (*xShutdown)(void*); 9433 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9434 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9435 int (*xPagecount)(sqlite3_pcache*); 9437 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 9439 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|