Searched refs:lookaside (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dstatus.c111 *pCurrent = db->lookaside.nOut;
112 *pHighwater = db->lookaside.mxOut;
114 db->lookaside.mxOut = db->lookaside.nOut;
128 *pHighwater = db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT];
130 db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT] = 0;
H A Dmalloc.c431 ** TRUE if p is a lookaside memory allocation from db
435 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
453 return db->lookaside.sz;
493 pBuf->pNext = db->lookaside.pFree;
494 db->lookaside.pFree = pBuf;
495 db->lookaside.nOut--;
619 if( db->lookaside.bEnabled ){
620 if( n>db->lookaside.sz ){
621 db->lookaside
[all...]
H A Dtokenize.c394 u8 enableLookaside; /* Saved value of db->lookaside.bEnabled */
418 enableLookaside = db->lookaside.bEnabled;
419 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1;
473 db->lookaside.bEnabled = enableLookaside;
H A Dmain.c439 ** Set up the lookaside buffers for a database connection.
441 ** If lookaside is already active, return SQLITE_BUSY.
443 ** The sz parameter is the number of bytes in each lookaside slot.
445 ** space for the lookaside memory is obtained from sqlite3_malloc().
447 ** the lookaside memory.
451 if( db->lookaside.nOut ){
454 /* Free any existing lookaside buffer for this handle before
458 if( db->lookaside.bMalloced ){
459 sqlite3_free(db->lookaside.pStart);
461 /* The size of a lookaside slo
[all...]
H A Dfkey.c592 ** the lookaside buffer belonging to database handle dbMem.
955 u8 enableLookaside; /* Copy of db->lookaside.bEnabled */
1063 /* Disable lookaside memory allocation */
1064 enableLookaside = db->lookaside.bEnabled;
1065 db->lookaside.bEnabled = 0;
1087 /* Re-enable the lookaside buffer, if it was disabled earlier. */
1088 db->lookaside.bEnabled = enableLookaside;
H A Dshell.c1025 fprintf(pArg->out, "Successful lookaside attempts: %d\n", iHiwtr);
H A Dparse.y149 pParse->db->lookaside.bEnabled = 0;
1347 pParse->db->lookaside.bEnabled = 0;
H A Dbuild.c1797 u8 enableLookaside = db->lookaside.bEnabled;
1801 db->lookaside.bEnabled = 0;
1810 db->lookaside.bEnabled = enableLookaside;
H A DsqliteInt.h733 ** lookaside malloc provides a significant performance enhancement
738 ** lookaside malloc subsystem. Each available memory allocation in
739 ** the lookaside subsystem is stored on a linked list of LookasideSlot
744 ** be stored in lookaside because in shared cache mode the schema information
747 ** lookaside allocations are not used to construct the schema objects.
751 u8 bEnabled; /* False to disable new lookaside allocations */
859 Lookaside lookaside; /* Lookaside malloc configuration */ member in struct:sqlite3
2392 sqlite3 *db; /* Optional database for lookaside. Can be NULL */
2424 int szLookaside; /* Default lookaside buffer size */
2425 int nLookaside; /* Default lookaside buffe
[all...]
H A Dselect.c1364 /* The sqlite3ResultSetOfSelect() is only used n contexts where lookaside
1366 assert( db->lookaside.bEnabled==0 );
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c1938 ** memory allocation for the lookaside memory allocator on each
1940 ** size of each lookaside buffer slot and the second is the number of
1942 ** <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE]
1943 ** verb to [sqlite3_db_config()] can be used to change the lookaside
2010 ** [lookaside memory allocator] configuration for the [database connection].
2012 ** pointer to a memory buffer to use for lookaside memory.
2015 ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
2016 ** size of each lookaside buffer slot. ^The third argument is the number of
2021 ** rounded down to the next smaller multiple of 8. ^(The lookaside memory
2023 ** connection is not currently using lookaside memor
9204 Lookaside lookaside; /* Lookaside malloc configuration */ member in struct:sqlite3
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c1733 ** memory allocation for the lookaside memory allocator on each
1735 ** size of each lookaside buffer slot and the second is the number of
1737 ** <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE]
1738 ** verb to [sqlite3_db_config()] can be used to change the lookaside
1882 ** [lookaside memory allocator] configuration for the [database connection].
1884 ** pointer to a memory buffer to use for lookaside memory.
1887 ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
1888 ** size of each lookaside buffer slot. ^The third argument is the number of
1893 ** rounded down to the next smaller multiple of 8. ^(The lookaside memory
1895 ** connection is not currently using lookaside memor
10495 Lookaside lookaside; /* Lookaside malloc configuration */ member in struct:sqlite3
[all...]
H A Dshell.c1136 fprintf(pArg->out, "Successful lookaside attempts: %d\n", iHiwtr);
/external/sqlite/dist/
H A Dsqlite3.c1733 ** memory allocation for the lookaside memory allocator on each
1735 ** size of each lookaside buffer slot and the second is the number of
1737 ** <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE]
1738 ** verb to [sqlite3_db_config()] can be used to change the lookaside
1882 ** [lookaside memory allocator] configuration for the [database connection].
1884 ** pointer to a memory buffer to use for lookaside memory.
1887 ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
1888 ** size of each lookaside buffer slot. ^The third argument is the number of
1893 ** rounded down to the next smaller multiple of 8. ^(The lookaside memory
1895 ** connection is not currently using lookaside memor
10495 Lookaside lookaside; /* Lookaside malloc configuration */ member in struct:sqlite3
[all...]
H A Dshell.c1141 fprintf(pArg->out, "Successful lookaside attempts: %d\n", iHiwtr);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 798 milliseconds