HomeSort by relevance Sort by last modified time
    Searched defs:Pager (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
pager.h 36 ** Each open file is managed by a separate instance of the "Pager" structure.
38 typedef struct Pager Pager;
50 ** roll back. See comments for function writeMasterJournal() in pager.c
84 ** that make up the Pager sub-system API. See source code comments for
88 /* Open and close a Pager connection. */
91 Pager **ppPager,
98 int sqlite3PagerClose(Pager *pPager);
99 int sqlite3PagerReadFileheader(Pager*, int, unsigned char*);
101 /* Functions used to configure a Pager object. *
    [all...]
pager.c 12 ** This is the implementation of the page cache subsystem or "pager".
14 ** The pager is used to access a database disk file. It implements
16 ** is separate from the database file. The pager also implements file
26 /******************* NOTES ON THE DESIGN OF THE PAGER ************************
127 ** PAGERID() takes a pointer to a Pager struct as its argument. The
135 ** The Pager.eState variable stores the current 'state' of a pager. A
136 ** pager may be in any one of the seven states shown in the following
174 ** The pager starts up in this state. Nothing is guaranteed in this
185 ** rollback (non-WAL) mode are met. Unless the pager is (or recentl
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 965 milliseconds