Home
last modified time | relevance | path

Searched refs:keylistStackDepth (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h264 int keylistStackDepth; /* The size of the "keylist" stack */ member
H A Dvdbe.c3852 p->keylistStackDepth++; in sqliteVdbeExec()
3853 assert(p->keylistStackDepth > 0); in sqliteVdbeExec()
3855 sizeof(Keylist *) * p->keylistStackDepth); in sqliteVdbeExec()
3857 p->keylistStack[p->keylistStackDepth - 1] = p->pList; in sqliteVdbeExec()
3868 assert(p->keylistStackDepth > 0); in sqliteVdbeExec()
3869 p->keylistStackDepth--; in sqliteVdbeExec()
3871 p->pList = p->keylistStack[p->keylistStackDepth]; in sqliteVdbeExec()
3872 p->keylistStack[p->keylistStackDepth] = 0; in sqliteVdbeExec()
3873 if( p->keylistStackDepth == 0 ){ in sqliteVdbeExec()
H A Dvdbeaux.c814 for(ii = 0; ii < p->keylistStackDepth; ii++){ in Cleanup()
818 p->keylistStackDepth = 0; in Cleanup()