Home
last modified time | relevance | path

Searched refs:pMemToFree (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A DwhereInt.h489 WhereMemBlock *pMemToFree;/* Memory to free when this object destroyed */ member
H A Dwhere.c262 pBlock->pNext = pWInfo->pMemToFree; in sqlite3WhereMalloc()
264 pWInfo->pMemToFree = pBlock; in sqlite3WhereMalloc()
2290 while( pWInfo->pMemToFree ){ in whereInfoFree()
2291 WhereMemBlock *pNext = pWInfo->pMemToFree->pNext; in whereInfoFree()
2292 sqlite3DbNNFreeNN(db, pWInfo->pMemToFree); in whereInfoFree()
2293 pWInfo->pMemToFree = pNext; in whereInfoFree()