Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A DvdbeInt.h270 Context *contextStack; /* Stack used by opcodes ContextPush & ContextPop*/ member
H A Dvdbe.c3891 p->contextStack = sqliteRealloc(p->contextStack, in sqliteVdbeExec()
3893 if( p->contextStack==0 ) goto no_mem; in sqliteVdbeExec()
3894 p->contextStack[p->contextStackDepth - 1].lastRowid = p->db->lastRowid; in sqliteVdbeExec()
3895 p->contextStack[p->contextStackDepth - 1].lsChange = p->db->lsChange; in sqliteVdbeExec()
3896 p->contextStack[p->contextStackDepth - 1].csChange = p->db->csChange; in sqliteVdbeExec()
3909 p->db->lastRowid = p->contextStack[p->contextStackDepth].lastRowid; in sqliteVdbeExec()
3910 p->db->lsChange = p->contextStack[p->contextStackDepth].lsChange; in sqliteVdbeExec()
3911 p->db->csChange = p->contextStack[p->contextStackDepth].csChange; in sqliteVdbeExec()
3913 sqliteFree(p->contextStack); in sqliteVdbeExec()
3914 p->contextStack = 0; in sqliteVdbeExec()
H A Dvdbeaux.c824 sqliteFree(p->contextStack); in Cleanup()
825 p->contextStack = 0; in Cleanup()