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

  /external/chromium_org/third_party/sqlite/src/src/
pcache.c 26 int bPurgeable; /* True if pages are on backing store */
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));
test_pcache.c 103 int bPurgeable; /* True if the page cache is purgeable */
132 static sqlite3_pcache *testpcacheCreate(int szPage, int bPurgeable){
147 p->bPurgeable = bPurgeable;
254 if( p->bPurgeable==0 ){
296 if( p->bPurgeable
pcache1.c 68 ** flag (bPurgeable) are set when the cache is created. nMax may be
74 int bPurgeable; /* True if cache is purgeable */
295 if( pCache->bPurgeable ){
314 if( pCache->bPurgeable ){
546 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){
585 pCache->bPurgeable = (bPurgeable ? 1 : 0);
586 if( bPurgeable ){
604 if( pCache->bPurgeable ){
688 assert( pCache->bPurgeable || createFlag!=1 )
    [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 143 milliseconds