Lines Matching refs:pDummy
35 void *pDummy; /* Dummy allocation to simulate failures */ member
55 assert( testpcacheGlobal.pDummy==0 ); in testpcacheInit()
57 testpcacheGlobal.pDummy = sqlite3_malloc(10); in testpcacheInit()
58 return testpcacheGlobal.pDummy==0 ? SQLITE_NOMEM : SQLITE_OK; in testpcacheInit()
69 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheShutdown()
71 sqlite3_free( testpcacheGlobal.pDummy ); in testpcacheShutdown()
72 testpcacheGlobal.pDummy = 0; in testpcacheShutdown()
142 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheCreate()
171 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheCachesize()
182 assert( testpcacheGlobal.pDummy!=0 ); in testpcachePagecount()
198 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheFetch()
297 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheUnpin()
343 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheRekey()
386 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheTruncate()
407 assert( testpcacheGlobal.pDummy!=0 ); in testpcacheDestroy()
451 assert( testpcacheGlobal.pDummy==0 ); in installTestPCache()