Searched defs:sqlite3_pcache_methods (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 8697 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 8698 struct sqlite3_pcache_methods { struct 8699 void *pArg; 8700 int (*xInit)(void*); 8701 void (*xShutdown)(void*); 8702 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 8703 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 8704 int (*xPagecount)(sqlite3_pcache*); 8706 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 8708 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|
| H A D | sqlite3.c | 9003 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9004 struct sqlite3_pcache_methods { struct 9005 void *pArg; 9006 int (*xInit)(void*); 9007 void (*xShutdown)(void*); 9008 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9009 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9010 int (*xPagecount)(sqlite3_pcache*); 9012 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 9014 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|