Home
last modified time | relevance | path

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

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.h6658 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6659 struct sqlite3_pcache_methods { struct
6660 void *pArg;
6661 int (*xInit)(void*);
6662 void (*xShutdown)(void*);
6663 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6664 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6665 int (*xPagecount)(sqlite3_pcache*);
6666 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6667 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
H A Dsqlite3.c6686 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6687 struct sqlite3_pcache_methods { struct
6688 void *pArg;
6689 int (*xInit)(void*);
6690 void (*xShutdown)(void*);
6691 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6692 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6693 int (*xPagecount)(sqlite3_pcache*);
6694 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6695 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]