HomeSort by relevance Sort by last modified time
    Searched refs:Pager (Results 1 - 18 of 18) 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...]
test2.c 12 ** Code for testing the pager.c module in SQLite. This code
67 ** Open a new pager
76 Pager *pPager;
104 ** Close the given pager.
112 Pager *pPager;
139 Pager *pPager;
166 Pager *pPager;
198 Pager *pPager;
225 Pager *pPager;
253 Pager *pPager
    [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...]
pcache.h 30 Pager *pPager; /* The pager this page is part of */
64 /* Create a new pager cache.
133 /* Set and get the suggested cache-size for the specified pager-cache.
136 ** the total number of pages cached by purgeable pager-caches to the sum
btreeInt.h 292 DbPage *pDbPage; /* Pager page handle */
404 Pager *pPager; /* The page cache */
628 Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */
btree.h 56 ** pager.h.
176 struct Pager *sqlite3BtreePager(Btree*);
status.c 147 Pager *pPager = sqlite3BtreePager(pBt);
backup.c 45 int isAttached; /* True once backup has been registered with pager */
46 sqlite3_backup *pNext; /* Next backup associated with source pager */
61 ** invoked by the pager layer to report various state changes in
217 Pager * const pDestPager = sqlite3BtreePager(p->pDest);
279 ** and the pager code use this trick (clearing the first byte
311 ** Register this backup object with the associated source pager for
340 Pager * const pSrcPager = sqlite3BtreePager(p->pSrc); /* Source pager */
341 Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Dest pager */
    [all...]
pragma.c 264 ** defined in pager.h. This function returns the associated lowercase
414 ** buffer that the pager module resizes using sqlite3_realloc().
493 Pager *pPager;
580 Pager *pPager = sqlite3BtreePager(pDb->pBt);
787 Pager *pPager = sqlite3BtreePager(pDb->pBt);
801 Pager *pPager = sqlite3BtreePager(pDb->pBt);
    [all...]
recover.c 218 * Btree, Pager, and DbPage structs.
392 /* Helper to fetch the pager and page size for the named database. */
394 Pager **pPager, unsigned *pnPageSize){
    [all...]
attach.c 134 Pager *pPager;
test_stat.c 371 Pager *pPager = sqlite3BtreePager(pBt);
shell.c 1032 fprintf(pArg->out, "Pager Heap Usage: %d bytes\n", iCur);
    [all...]
main.c 645 ** at the b-tree/pager level.
    [all...]
btree.c 64 ** Enable or disable the shared pager and schema features.
545 ** page from the pager layer with the 'no-content' flag set. True otherwise.
    [all...]
vdbe.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/bison/tests/
testsuite     [all...]

Completed in 1657 milliseconds