Searched refs:sqlite3_pcache (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_init.c126 static sqlite3_pcache *wrPCacheCreate(int a, int b){
129 static void wrPCacheCachesize(sqlite3_pcache *p, int n){
132 static int wrPCachePagecount(sqlite3_pcache *p){
135 static void *wrPCacheFetch(sqlite3_pcache *p, unsigned a, int b){
138 static void wrPCacheUnpin(sqlite3_pcache *p, void *a, int b){
141 static void wrPCacheRekey(sqlite3_pcache *p, void *a, unsigned b, unsigned c){
144 static void wrPCacheTruncate(sqlite3_pcache *p, unsigned a){
147 static void wrPCacheDestroy(sqlite3_pcache *p){
H A Dtest_pcache.c132 static sqlite3_pcache *testpcacheCreate(int szPage, int bPurgeable){
155 return (sqlite3_pcache*)p;
161 static void testpcacheCachesize(sqlite3_pcache *pCache, int newSize){
173 static int testpcachePagecount(sqlite3_pcache *pCache){
185 sqlite3_pcache *pCache,
282 sqlite3_pcache *pCache,
327 sqlite3_pcache *pCache,
374 static void testpcacheTruncate(sqlite3_pcache *pCache, unsigned iLimit){
396 static void testpcacheDestroy(sqlite3_pcache *pCache){
H A Dpcache1.c14 ** sqlite3_pcache interface). It also contains part of the implementation
64 ** opaque sqlite3_pcache* handles.
512 /******** sqlite3_pcache Methods **********************************************/
515 ** Implementation of the sqlite3_pcache.xInit method.
531 ** Implementation of the sqlite3_pcache.xShutdown method.
542 ** Implementation of the sqlite3_pcache.xCreate method.
546 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){
594 return (sqlite3_pcache *)pCache;
598 ** Implementation of the sqlite3_pcache.xCachesize method.
602 static void pcache1Cachesize(sqlite3_pcache *
[all...]
H A Dsqlite.h.in5690 ** The sqlite3_pcache type is opaque. It is implemented by
5693 ** sqlite3_pcache object except by holding and passing pointers
5698 typedef struct sqlite3_pcache sqlite3_pcache;
5837 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5846 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5847 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5848 int (*xPagecount)(sqlite3_pcache*);
5849 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5850 void (*xUnpin)(sqlite3_pcache*, voi
[all...]
H A Dpcache.c29 sqlite3_pcache *pCache; /* Pluggable cache module */
217 /* If the pluggable cache (sqlite3_pcache*) has not been allocated,
221 sqlite3_pcache *p;
/external/sqlite/dist/orig/
H A Dsqlite3.h6493 ** The sqlite3_pcache type is opaque. It is implemented by
6496 ** sqlite3_pcache object except by holding and passing pointers
6501 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
6668 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6684 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6685 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6686 int (*xPagecount)(sqlite3_pcache*);
6687 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6688 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_pag
[all...]
H A Dsqlite3.c6608 ** The sqlite3_pcache type is opaque. It is implemented by
6611 ** sqlite3_pcache object except by holding and passing pointers
6616 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
6783 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6799 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6800 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6801 int (*xPagecount)(sqlite3_pcache*);
6802 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6803 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_pag
[all...]
/external/sqlite/dist/
H A Dsqlite3.h6493 ** The sqlite3_pcache type is opaque. It is implemented by
6496 ** sqlite3_pcache object except by holding and passing pointers
6501 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
6668 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6684 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6685 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6686 int (*xPagecount)(sqlite3_pcache*);
6687 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6688 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_pag
[all...]
H A Dsqlite3.c6608 ** The sqlite3_pcache type is opaque. It is implemented by
6611 ** sqlite3_pcache object except by holding and passing pointers
6616 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
6783 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6799 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6800 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6801 int (*xPagecount)(sqlite3_pcache*);
6802 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6803 void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_pag
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5695 ** The sqlite3_pcache type is opaque. It is implemented by
5698 ** sqlite3_pcache object except by holding and passing pointers
5703 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
5842 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5851 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5852 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5853 int (*xPagecount)(sqlite3_pcache*);
5854 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5855 void (*xUnpin)(sqlite3_pcache*, voi
[all...]
H A Dsqlite3.c6238 ** The sqlite3_pcache type is opaque. It is implemented by
6241 ** sqlite3_pcache object except by holding and passing pointers
6246 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
6385 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6394 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6395 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6396 int (*xPagecount)(sqlite3_pcache*);
6397 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6398 void (*xUnpin)(sqlite3_pcache*, voi
[all...]

Completed in 3007 milliseconds