Searched defs:sqlite3_pcache_methods (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 9525 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9526 struct sqlite3_pcache_methods { struct 9527 void *pArg; 9528 int (*xInit)(void*); 9529 void (*xShutdown)(void*); 9530 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9531 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9532 int (*xPagecount)(sqlite3_pcache*); 9533 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); 9534 void (*xUnpin)(sqlite3_pcache*, void*, int discard); [all …]
|
| H A D | sqlite3.c | 9846 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9847 struct sqlite3_pcache_methods { struct 9848 void *pArg; 9849 int (*xInit)(void*); 9850 void (*xShutdown)(void*); 9851 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9852 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9853 int (*xPagecount)(sqlite3_pcache*); 9854 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); 9855 void (*xUnpin)(sqlite3_pcache*, void*, int discard); [all …]
|