HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_pcache (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_init.c 126 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){
test_pcache.c 132 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){
pcache1.c 14 ** 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 *p, int nMax)
    [all...]
sqlite.h.in     [all...]
pcache.c 29 sqlite3_pcache *pCache; /* Pluggable cache module */
217 /* If the pluggable cache (sqlite3_pcache*) has not been allocated,
221 sqlite3_pcache *p;
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 5703 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
    [all...]
sqlite3.c 6246 typedef struct sqlite3_pcache sqlite3_pcache; typedef in typeref:struct:sqlite3_pcache
    [all...]

Completed in 255 milliseconds