Home | History | Annotate | Download | only in dist

Lines Matching refs:nested

9746   int vdbeExecCnt;              /* Number of nested calls to VdbeExec() */
9798 int nStatement; /* Number of nested statement-transactions */
10804 ** For each nested loop in a WHERE clause implementation, the WhereInfo
10834 } *aInLoop; /* Information about each nested IN operator */
10878 int nLevel; /* Number of nested loop */
10897 ** NameContexts can be nested. When resolving names, the inner-most
11090 u8 nested; /* Number of nested calls to the parser/code generator */
48815 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
66013 ** ensure that statement-transactions are always nested, not overlapping.
67643 ** savepoints nested inside of the savepoint being operated on. */
81364 if( pParse->nested ) return;
81470 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
81477 pParse->nested++;
81484 pParse->nested--;
81928 if( !pParse->db->init.busy && pParse->nested==0
82078 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
85565 ** part of a nested parse and writable_schema pragma has not
85574 && pParse->nested==0 )
85823 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
85917 int count = (pParse->nested==0); /* True to count changes */
85938 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
85946 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
89538 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
90025 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
90034 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
90457 if( pParse->nested ){
90470 if( !pParse->nested ){
100740 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
101021 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
101030 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
106137 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
107104 ** The basic idea is to do a nested loop, one loop for each table in
107121 ** Note that the loops might not be nested in the order in which they
107124 ** the WHERE clause, it might result in additional nested loops for
107214 /* This function normally generates a nested loop for all tables in
107362 ** next nested loop. The loop tests all FROM clause entries
107370 ** were used as the innermost nested loop. In other words, a table
107624 ** loop below generates code for a single nested loop of the VM
110492 /* When doing a nested parse, one can include terms in an expression
110495 if( pParse->nested==0 ){
112056 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
112061 if( pParse->nested==0 ){
122434 int nNest; /* Number of nested brackets */