Searched refs:sqlite3_pcache (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 8259 typedef struct sqlite3_pcache sqlite3_pcache; typedef 8443 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 8444 int (*xPagecount)(sqlite3_pcache*); 8449 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); 8450 void (*xDestroy)(sqlite3_pcache*); 8451 void (*xShrink)(sqlite3_pcache*); 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 | 9298 typedef struct sqlite3_pcache sqlite3_pcache; typedef 9489 void (*xDestroy)(sqlite3_pcache*); 9490 void (*xShrink)(sqlite3_pcache*); 9510 void (*xDestroy)(sqlite3_pcache*); 49101 sqlite3_pcache *pNew; 50473 return (sqlite3_pcache *)pCache; 50664 sqlite3_pcache *p, 50694 sqlite3_pcache *p, 50709 sqlite3_pcache *p, 50740 sqlite3_pcache *p, [all …]
|
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 5899 typedef struct sqlite3_pcache sqlite3_pcache; typedef 6056 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); 6057 void (*xCachesize)(sqlite3_pcache*, int nCachesize); 6058 int (*xPagecount)(sqlite3_pcache*); 6059 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); 6060 void (*xUnpin)(sqlite3_pcache*, void*, int discard); 6061 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey); 6062 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); 6063 void (*xDestroy)(sqlite3_pcache*);
|
| H A D | sqlite3.c | 6452 typedef struct sqlite3_pcache sqlite3_pcache; typedef 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); 6616 void (*xDestroy)(sqlite3_pcache*); 35396 sqlite3_pcache *p; 36609 return (sqlite3_pcache *)pCache; 36634 static int pcache1Pagecount(sqlite3_pcache *p){ 36841 sqlite3_pcache *p, [all …]
|