Searched defs:Pager (Results 1 – 3 of 3) sorted by relevance
157 struct Pager { struct158 char *zFilename; /* Name of the database file */159 char *zJournal; /* Name of the journal file */160 char *zDirectory; /* Directory hold database and journal files */161 OsFile fd, jfd; /* File descriptors for database and journal */162 OsFile cpfd; /* File descriptor for the checkpoint journal */163 int dbSize; /* Number of pages in the file */164 int origDbSize; /* dbSize before the current change */165 int ckptSize; /* Size of database (in pages) at ckpt_begin() */166 off_t ckptJSize; /* Size of journal at ckpt_begin() */[all …]
67 typedef struct Pager Pager; typedef
60 struct Pager *(*Pager)(Btree*); member