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

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h269 int contextStackDepth; /* The size of the "context" stack */ member in struct:Vdbe
H A Dvdbe.c3889 p->contextStackDepth++;
3890 assert(p->contextStackDepth > 0);
3892 sizeof(Context) * p->contextStackDepth);
3894 p->contextStack[p->contextStackDepth - 1].lastRowid = p->db->lastRowid;
3895 p->contextStack[p->contextStackDepth - 1].lsChange = p->db->lsChange;
3896 p->contextStack[p->contextStackDepth - 1].csChange = p->db->csChange;
3907 assert(p->contextStackDepth > 0);
3908 p->contextStackDepth--;
3909 p->db->lastRowid = p->contextStack[p->contextStackDepth].lastRowid;
3910 p->db->lsChange = p->contextStack[p->contextStackDepth]
[all...]

Completed in 68 milliseconds