HomeSort by relevance Sort by last modified time
    Searched refs:nFreeSlot (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
pcache1.c 121 ** The nFreeSlot and pFree values do require mutex protection.
126 int nReserve; /* Try to keep nFreeSlot above this */
130 int nFreeSlot; /* Number of unused pcache slots */
184 pcache1.nSlot = pcache1.nFreeSlot = n;
217 pcache1.nFreeSlot--;
218 pcache1.bUnderPressure = pcache1.nFreeSlot<pcache1.nReserve;
219 assert( pcache1.nFreeSlot>=0 );
252 pcache1.nFreeSlot++;
253 pcache1.bUnderPressure = pcache1.nFreeSlot<pcache1.nReserve;
254 assert( pcache1.nFreeSlot<=pcache1.nSlot )
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 50 milliseconds