• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/

Lines Matching defs:nested

8370   int nStatement;               /* Number of nested statement-transactions  */
9345 ** For each nested loop in a WHERE clause implementation, the WhereInfo
9375 } *aInLoop; /* Information about each nested IN operator */
9418 int nLevel; /* Number of nested loop */
9432 ** NameContexts can be nested. When resolving names, the inner-most
9614 u8 nested; /* Number of nested calls to the parser/code generator */
36929 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
53237 ** ensure that statement-transactions are always nested, not overlapping.
54771 ** savepoints nested inside of the savepoint being operated on. */
66346 if( pParse->nested ) return;
66451 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
66458 pParse->nested++;
66465 pParse->nested--;
66903 if( !pParse->db->init.busy && pParse->nested==0
67048 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
70421 ** part of a nested parse and writable_schema pragma has not
70430 && pParse->nested==0 )
70680 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
70771 int count = (pParse->nested==0); /* True to count changes */
70792 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
70800 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
74266 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
74753 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
74762 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
75170 if( pParse->nested ){
75183 if( !pParse->nested ){
84831 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
85109 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
85118 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
89248 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
89986 ** The basic idea is to do a nested loop, one loop for each table in
90003 ** Note that the loops might not be nested in the order in which they
90006 ** the WHERE clause, it might result in additional nested loops for
90094 /* This function normally generates a nested loop for all tables in
90225 ** next nested loop. The FROM clause entries may be iterated through
90232 ** were used as the innermost nested loop. In other words, a table
90431 ** loop below generates code for a single nested loop of the VM
93257 /* When doing a nested parse, one can include terms in an expression
93260 if( pParse->nested==0 ){
94795 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
94800 if( pParse->nested==0 ){
100996 int nNest; /* Number of nested brackets */