Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h266 int contextStackDepth; /* The size of the "context" stack */ member
H A Dvdbe.c3887 p->contextStackDepth++; in sqliteVdbeExec()
3888 assert(p->contextStackDepth > 0); in sqliteVdbeExec()
3890 sizeof(Context) * p->contextStackDepth); in sqliteVdbeExec()
3893 p->contextStack[p->contextStackDepth - 1].lsChange = p->db->lsChange; in sqliteVdbeExec()
3894 p->contextStack[p->contextStackDepth - 1].csChange = p->db->csChange; in sqliteVdbeExec()
3905 assert(p->contextStackDepth > 0); in sqliteVdbeExec()
3906 p->contextStackDepth--; in sqliteVdbeExec()
3907 p->db->lastRowid = p->contextStack[p->contextStackDepth].lastRowid; in sqliteVdbeExec()
3908 p->db->lsChange = p->contextStack[p->contextStackDepth].lsChange; in sqliteVdbeExec()
3909 p->db->csChange = p->contextStack[p->contextStackDepth].csChange; in sqliteVdbeExec()
[all …]