Searched refs:keylistStack (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h268 Keylist **keylistStack; /* The stack used by opcodes ListPush & ListPop */ member in struct:Vdbe
H A Dvdbeaux.c815 if( p->keylistStack ){
818 sqliteVdbeKeylistFree(p->keylistStack[ii]);
820 sqliteFree(p->keylistStack);
822 p->keylistStack = 0;
H A Dvdbe.c3856 p->keylistStack = sqliteRealloc(p->keylistStack,
3858 if( p->keylistStack==0 ) goto no_mem;
3859 p->keylistStack[p->keylistStackDepth - 1] = p->pList;
3873 p->pList = p->keylistStack[p->keylistStackDepth];
3874 p->keylistStack[p->keylistStackDepth] = 0;
3876 sqliteFree(p->keylistStack);
3877 p->keylistStack = 0;

Completed in 39 milliseconds