Searched defs:sqlite3_pcache_methods (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 6051 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*); 6060 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 6062 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|
| H A D | sqlite3.c | 6604 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*); 6613 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 6615 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 8459 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 8460 struct sqlite3_pcache_methods { struct 8461 void *pArg; 8462 int (*xInit)(void*); 8463 void (*xShutdown)(void*); 8464 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 8465 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 8466 int (*xPagecount)(sqlite3_pcache*); 8468 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 8470 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|
| H A D | sqlite3.c | 9498 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef 9499 struct sqlite3_pcache_methods { struct 9500 void *pArg; 9501 int (*xInit)(void*); 9502 void (*xShutdown)(void*); 9503 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 9504 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 9505 int (*xPagecount)(sqlite3_pcache*); 9507 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 9509 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); [all …]
|