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