Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.h6051 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6052 struct sqlite3_pcache_methods { struct
6053 void *pArg;
6054 int (*xInit)(void*);
6055 void (*xShutdown)(void*);
6056 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6057 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6058 int (*xPagecount)(sqlite3_pcache*);
6059 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6060 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
HDsqlite3.c6604 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6605 struct sqlite3_pcache_methods { struct
6606 void *pArg;
6607 int (*xInit)(void*);
6608 void (*xShutdown)(void*);
6609 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6610 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6611 int (*xPagecount)(sqlite3_pcache*);
6612 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6613 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/NextBSD/contrib/sqlite3/
HDsqlite3.h6937 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6938 struct sqlite3_pcache_methods { struct
6939 void *pArg;
6940 int (*xInit)(void*);
6941 void (*xShutdown)(void*);
6942 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6943 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6944 int (*xPagecount)(sqlite3_pcache*);
6945 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6946 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
HDsqlite3.c7151 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7152 struct sqlite3_pcache_methods { struct
7153 void *pArg;
7154 int (*xInit)(void*);
7155 void (*xShutdown)(void*);
7156 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7157 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7158 int (*xPagecount)(sqlite3_pcache*);
7159 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
7160 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]