Searched refs:bPurgeable (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dpcache1.c68 ** flag (bPurgeable) are set when the cache is created. nMax may be
74 int bPurgeable; /* True if cache is purgeable */ member in struct:PCache1
295 if( pCache->bPurgeable ){
314 if( pCache->bPurgeable ){
546 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){ argument
585 pCache->bPurgeable = (bPurgeable ? 1 : 0);
586 if( bPurgeable ){
604 if( pCache->bPurgeable ){
688 assert( pCache->bPurgeable || createFla
[all...]
H A Dtest_pcache.c103 int bPurgeable; /* True if the page cache is purgeable */ member in struct:testpcache
132 static sqlite3_pcache *testpcacheCreate(int szPage, int bPurgeable){ argument
147 p->bPurgeable = bPurgeable;
254 if( p->bPurgeable==0 ){
296 if( p->bPurgeable
H A Dpcache.h71 int bPurgeable, /* True if pages are on backing store */
H A Dpcache.c26 int bPurgeable; /* True if pages are on backing store */ member in struct:PCache
130 if( pCache->bPurgeable ){
173 int bPurgeable, /* True if pages are on backing store */
181 p->bPurgeable = bPurgeable;
224 p = sqlite3GlobalConfig.pcache.xCreate(nByte, pCache->bPurgeable);
232 eCreate = createFlag * (1 + (!pCache->bPurgeable || !pCache->pDirty));
170 sqlite3PcacheOpen( int szPage, int szExtra, int bPurgeable, int (*xStress)(void*,PgHdr*), void *pStress, PCache *p ) argument
H A Dsqlite.h.in5762 ** xCreate(), bPurgeable, is true if the cache being created will
5765 ** does not have to do anything special based with the value of bPurgeable;
5766 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
5768 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
5770 ** ^Hence, a cache created with bPurgeable false will
5776 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
5846 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
/external/sqlite/dist/orig/
H A Dsqlite3.h6582 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6585 ** does not have to do anything special based with the value of bPurgeable;
6586 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6588 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6590 ** ^Hence, a cache created with bPurgeable false will
6597 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6684 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6706 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
H A Dsqlite3.c6697 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6700 ** does not have to do anything special based with the value of bPurgeable;
6701 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6703 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6705 ** ^Hence, a cache created with bPurgeable false will
6712 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6799 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6821 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9868 int bPurgeable, /* True if pages are on backing store */
37950 u8 bPurgeable; /* True if pages are on backing store */ member in struct:PCache
38102 sqlite3PcacheOpen( int szPage, int szExtra, int bPurgeable, int (*xStress)(void*,PgHdr*), void *pStress, PCache *p ) argument
38638 int bPurgeable; /* True if cache is purgeable */ member in struct:PCache1
39122 pcache1Create(int szPage, int szExtra, int bPurgeable) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.h6582 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6585 ** does not have to do anything special based with the value of bPurgeable;
6586 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6588 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6590 ** ^Hence, a cache created with bPurgeable false will
6597 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6684 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6706 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
H A Dsqlite3.c6697 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6700 ** does not have to do anything special based with the value of bPurgeable;
6701 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6703 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6705 ** ^Hence, a cache created with bPurgeable false will
6712 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6799 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6821 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9868 int bPurgeable, /* True if pages are on backing store */
37970 u8 bPurgeable; /* True if pages are on backing store */ member in struct:PCache
38122 sqlite3PcacheOpen( int szPage, int szExtra, int bPurgeable, int (*xStress)(void*,PgHdr*), void *pStress, PCache *p ) argument
38658 int bPurgeable; /* True if cache is purgeable */ member in struct:PCache1
39142 pcache1Create(int szPage, int szExtra, int bPurgeable) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5767 ** xCreate(), bPurgeable, is true if the cache being created will
5770 ** does not have to do anything special based with the value of bPurgeable;
5771 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
5773 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
5775 ** ^Hence, a cache created with bPurgeable false will
5781 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
5851 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
H A Dsqlite3.c6310 ** xCreate(), bPurgeable, is true if the cache being created will
6313 ** does not have to do anything special based with the value of bPurgeable;
6314 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6316 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6318 ** ^Hence, a cache created with bPurgeable false will
6324 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6394 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8548 int bPurgeable, /* True if pages are on backing store */
34351 int bPurgeable; /* True if pages are on backing store */ member in struct:PCache
34495 sqlite3PcacheOpen( int szPage, int szExtra, int bPurgeable, int (*xStress)(void*,PgHdr*), void *pStress, PCache *p ) argument
34988 int bPurgeable; /* True if cache is purgeable */ member in struct:PCache1
35460 pcache1Create(int szPage, int bPurgeable) argument
[all...]

Completed in 1399 milliseconds