Home
last modified time | relevance | path

Searched defs:PCache (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dpcache.c41 struct PCache { struct
42 PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */
44 int nRefSum; /* Sum of ref counts over all pages */
45 int szCache; /* Configured cache size */
46 int szSpill; /* Size before spilling occurs */
47 int szPage; /* Size of every page in this cache */
48 int szExtra; /* Size of extra space for each page */
50 u8 eCreate; /* eCreate value for for xFetch() */
51 int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */
52 void *pStress; /* Argument to xStress */
[all …]
H A Dpcache.h19 typedef struct PCache PCache; typedef