• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:sqlite3_pcache

5687 ** The sqlite3_pcache type is opaque.  It is implemented by
5690 ** sqlite3_pcache object except by holding and passing pointers
5695 typedef struct sqlite3_pcache sqlite3_pcache;
5821 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5830 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5831 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5832 int (*xPagecount)(sqlite3_pcache*);
5833 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5834 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
5835 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
5836 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
5837 void (*xDestroy)(sqlite3_pcache*);
29469 sqlite3_pcache *pCache; /* Pluggable cache module */
29652 /* If the pluggable cache (sqlite3_pcache*) has not been allocated,
29656 sqlite3_pcache *p;
30031 ** sqlite3_pcache interface). It also contains part of the implementation
30043 ** opaque sqlite3_pcache* handles
30411 /******** sqlite3_pcache Methods **********************************************/
30414 ** Implementation of the sqlite3_pcache.xInit method.
30428 ** Implementation of the sqlite3_pcache.xShutdown method.
30439 ** Implementation of the sqlite3_pcache.xCreate method.
30443 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){
30458 return (sqlite3_pcache *)pCache;
30462 ** Implementation of the sqlite3_pcache.xCachesize method.
30466 static void pcache1Cachesize(sqlite3_pcache *p, int nMax){
30478 ** Implementation of the sqlite3_pcache.xPagecount method.
30480 static int pcache1Pagecount(sqlite3_pcache *p){
30489 ** Implementation of the sqlite3_pcache.xFetch method.
30537 static void *pcache1Fetch(sqlite3_pcache *p, unsigned int iKey, int createFlag){
30615 ** Implementation of the sqlite3_pcache.xUnpin method.
30619 static void pcache1Unpin(sqlite3_pcache *p, void *pPg, int reuseUnlikely){
30656 ** Implementation of the sqlite3_pcache.xRekey method.
30659 sqlite3_pcache *p,
30692 ** Implementation of the sqlite3_pcache.xTruncate method.
30698 static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){
30709 ** Implementation of the sqlite3_pcache.xDestroy method.
30713 static void pcache1Destroy(sqlite3_pcache *p){