Home
last modified time | relevance | path

Searched defs:sqlite3_pcache_methods (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.h9090 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9091 struct sqlite3_pcache_methods { struct
9092 void *pArg;
9093 int (*xInit)(void*);
9094 void (*xShutdown)(void*);
9095 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9096 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9097 int (*xPagecount)(sqlite3_pcache*);
9098 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9099 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c9403 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9404 struct sqlite3_pcache_methods { struct
9405 void *pArg;
9406 int (*xInit)(void*);
9407 void (*xShutdown)(void*);
9408 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9409 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9410 int (*xPagecount)(sqlite3_pcache*);
9411 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9412 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]