Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A DvdbeInt.h267 int keylistStackDepth; /* The size of the "keylist" stack */ member
H A Dvdbe.c3854 p->keylistStackDepth++; in sqliteVdbeExec()
3855 assert(p->keylistStackDepth > 0); in sqliteVdbeExec()
3857 sizeof(Keylist *) * p->keylistStackDepth); in sqliteVdbeExec()
3859 p->keylistStack[p->keylistStackDepth - 1] = p->pList; in sqliteVdbeExec()
3870 assert(p->keylistStackDepth > 0); in sqliteVdbeExec()
3871 p->keylistStackDepth--; in sqliteVdbeExec()
3873 p->pList = p->keylistStack[p->keylistStackDepth]; in sqliteVdbeExec()
3874 p->keylistStack[p->keylistStackDepth] = 0; in sqliteVdbeExec()
3875 if( p->keylistStackDepth == 0 ){ in sqliteVdbeExec()
H A Dvdbeaux.c817 for(ii = 0; ii < p->keylistStackDepth; ii++){ in Cleanup()
821 p->keylistStackDepth = 0; in Cleanup()