Lines Matching defs:nested

9482   int vdbeExecCnt;              /* Number of nested calls to VdbeExec() */
9532 int nStatement; /* Number of nested statement-transactions */
10550 ** For each nested loop in a WHERE clause implementation, the WhereInfo
10580 } *aInLoop; /* Information about each nested IN operator */
10624 int nLevel; /* Number of nested loop */
10643 ** NameContexts can be nested. When resolving names, the inner-most
10836 u8 nested; /* Number of nested calls to the parser/code generator */
47690 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
64644 ** ensure that statement-transactions are always nested, not overlapping.
66268 ** savepoints nested inside of the savepoint being operated on. */
79268 if( pParse->nested ) return;
79374 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
79381 pParse->nested++;
79388 pParse->nested--;
79832 if( !pParse->db->init.busy && pParse->nested==0
79982 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
83456 ** part of a nested parse and writable_schema pragma has not
83465 && pParse->nested==0 )
83715 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
83809 int count = (pParse->nested==0); /* True to count changes */
83830 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
83838 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
87419 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
87906 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
87915 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
88338 if( pParse->nested ){
88351 if( !pParse->nested ){
98523 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
98801 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
98810 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
103890 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
104818 ** The basic idea is to do a nested loop, one loop for each table in
104835 ** Note that the loops might not be nested in the order in which they
104838 ** the WHERE clause, it might result in additional nested loops for
104928 /* This function normally generates a nested loop for all tables in
105076 ** next nested loop. The loop tests all FROM clause entries
105084 ** were used as the innermost nested loop. In other words, a table
105337 ** loop below generates code for a single nested loop of the VM
108170 /* When doing a nested parse, one can include terms in an expression
108173 if( pParse->nested==0 ){
109728 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
109733 if( pParse->nested==0 ){
119638 int nNest; /* Number of nested brackets */