Searched refs:contextStackDepth (Results 1 – 2 of 2) sorted by relevance
266 int contextStackDepth; /* The size of the "context" stack */ member
3887 p->contextStackDepth++; in sqliteVdbeExec()3888 assert(p->contextStackDepth > 0); in sqliteVdbeExec()3890 sizeof(Context) * p->contextStackDepth); in sqliteVdbeExec()3892 p->contextStack[p->contextStackDepth - 1].lastRowid = p->db->lastRowid; 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()[all …]