• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/sqlite3/

Lines Matching defs:nested

17018   int nVdbeExec;                /* Number of nested calls to VdbeExec() */
17082 int nStatement; /* Number of nested statement-transactions */
18522 ** NameContexts can be nested. When resolving names, the inner-most
18894 u8 nested; /* Number of nested calls to the parser/code generator */
18931 Parse *pParentParse; /* Parent parser if this parser is nested */
64281 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
89339 ** savepoints nested inside of the savepoint being operated on. */
99601 && pParse->nested==0
105190 if( !pParse->pTriggerTab && !pParse->nested ){
106347 SrcList *pSrc; /* One particular FROM clause in a nested query */
106951 ** nested SQL may raise an exception. */
111716 if( pParse->nested ) return;
111875 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
111887 pParse->nested++;
111894 pParse->nested--;
112515 if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7))
112760 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
116558 assert( (errCode&0xff)==SQLITE_CONSTRAINT || pParse->nested );
117509 ** part of a nested parse and writable_schema pragma has not
117524 return sqlite3WritableSchema(db)==0 && pParse->nested==0;
117818 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
117848 && !pParse->nested
118041 int count = (pParse->nested==0); /* True to count changes */
118063 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
118243 if( pParse->nested==0 || 0==sqlite3_stricmp(pTab->zName, "sqlite_stat1") ){
122903 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
123128 && !pParse->nested
123482 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
124654 assert( pParse->nested==0 );
124667 if( pParse->nested ){
124680 if( !pParse->nested ){
136047 ** Argument pWith (which may be NULL) points to a linked list of nested
140505 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
140570 && !pParse->nested
140637 if( !pParse->nested && !pTrigger && !hasFK && !chngKey && !bReplace ){
140971 if( !pParse->nested ){
141026 if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){
143355 ** This object contains information needed to implement a single nested
143365 ** nested loops as implemented). The order of WhereLevel objects determines
143366 ** the loop nested order, with WhereInfo.a[0] being the outer loop and
143397 } *aInLoop; /* Information about each nested IN operator */
143784 u8 nLevel; /* Number of nested loop */
144583 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
152977 ** The basic idea is to do a nested loop, one loop for each table in
152994 ** Note that the loops might not be nested in the order in which they
152997 ** the WHERE clause, it might result in additional nested loops for
153113 /* This function normally generates a nested loop for all tables in
153588 ** loop below generates code for a single nested loop of the VM
161253 /* When doing a nested parse, one can include terms in an expression
161258 if( pParse->nested==0 ){
163498 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
163503 if( pParse->nested==0 ){
163556 int nParen; /* Number of nested levels of parentheses */
176761 int nNest; /* Number of nested brackets */