Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dprepare.c579 while( pParse->pCleanup ){ in sqlite3ParseObjectReset()
580 ParseCleanup *pCleanup = pParse->pCleanup; in sqlite3ParseObjectReset() local
581 pParse->pCleanup = pCleanup->pNext; in sqlite3ParseObjectReset()
582 pCleanup->xCleanup(db, pCleanup->pPtr); in sqlite3ParseObjectReset()
583 sqlite3DbNNFreeNN(db, pCleanup); in sqlite3ParseObjectReset()
631 ParseCleanup *pCleanup = sqlite3DbMallocRaw(pParse->db, sizeof(*pCleanup)); in sqlite3ParserAddCleanup() local
632 if( pCleanup ){ in sqlite3ParserAddCleanup()
633 pCleanup->pNext = pParse->pCleanup; in sqlite3ParserAddCleanup()
634 pParse->pCleanup = pCleanup; in sqlite3ParserAddCleanup()
635 pCleanup->pPtr = pPtr; in sqlite3ParserAddCleanup()
[all …]
H A DsqliteInt.h3675 ParseCleanup *pCleanup; /* List of cleanup operations to run after parse */ member