Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dsqlite3.h7348 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7349 struct sqlite3_pcache_methods { struct
7350 void *pArg;
7351 int (*xInit)(void*);
7352 void (*xShutdown)(void*);
7353 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7354 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7355 int (*xPagecount)(sqlite3_pcache*);
7356 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
7357 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c7625 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7626 struct sqlite3_pcache_methods { struct
7627 void *pArg;
7628 int (*xInit)(void*);
7629 void (*xShutdown)(void*);
7630 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7631 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7632 int (*xPagecount)(sqlite3_pcache*);
7633 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
7634 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.h7348 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7349 struct sqlite3_pcache_methods { struct
7350 void *pArg;
7351 int (*xInit)(void*);
7352 void (*xShutdown)(void*);
7353 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7354 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7355 int (*xPagecount)(sqlite3_pcache*);
7356 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
7357 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c7625 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7626 struct sqlite3_pcache_methods { struct
7627 void *pArg;
7628 int (*xInit)(void*);
7629 void (*xShutdown)(void*);
7630 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7631 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7632 int (*xPagecount)(sqlite3_pcache*);
7633 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
7634 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]