Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A DvdbeInt.h269 int contextStackDepth; /* The size of the "context" stack */ member
H A Dvdbe.c3889 p->contextStackDepth++; in sqliteVdbeExec()
3890 assert(p->contextStackDepth > 0); in sqliteVdbeExec()
3892 sizeof(Context) * p->contextStackDepth); 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()
3907 assert(p->contextStackDepth > 0); in sqliteVdbeExec()
3908 p->contextStackDepth--; in sqliteVdbeExec()
3909 p->db->lastRowid = p->contextStack[p->contextStackDepth].lastRowid; in sqliteVdbeExec()
3910 p->db->lsChange = p->contextStack[p->contextStackDepth].lsChange; in sqliteVdbeExec()
[all …]