• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:seen

7 ** of 5% are more are commonly seen when SQLite is compiled as a single
8278 ** within a trigger is not seen outside the trigger. Changes to views do not
8298 u8 mallocFailed; /* True if we have seen a malloc failure */
9448 u8 hasAgg; /* True if aggregates are seen */
9618 int nErr; /* Number of errors seen */
9662 int nVar; /* Number of '?' variables seen in the SQL so far */
13207 ** The minimum amount of free space that we have seen.
18746 ** Add the sign if we've seen at least one digit */
19401 ** But usually the problem will be seen. The result will be an
30065 unsigned int iMaxKey; /* Largest key seen since xTruncate() */
33346 ** the first journal header seen and continuing until the effective end
45122 ** Write the number of error seen in *pnErr. Except for some memory
45132 int *pnErr /* Write number of errors seen to this variable */
48196 int nSub = 0; /* Number of sub-vdbes seen so far */
48292 ** has not already been seen.
56867 ** seen. Reg(P1) is updated with the number of errors remaining.
58963 ** an abort request is seen.
59764 ** Return the number of errors seen.
59854 ** return non-zero. Return zero if no errors are seen.
60127 ** are seen.
67188 ** been seen on a column. This routine sets the notNull flag on
67936 ** of errors. If an error is seen leave an error message in pParse->zErrMsg.
68470 ** clause is seen as part of a foreign key definition. The isDeferred
69440 SrcList *p, /* The left part of the FROM clause already seen */
71545 int seen;
71599 seen = 0;
71609 if( c==']' ) seen = 1;
71615 if( c>=prior_c && c<=c2 ) seen = 1;
71619 seen = 1;
71625 if( c2==0 || (seen ^ invert)==0 ){
72152 u8 overflow; /* True if integer overflow seen */
79109 ** If an illegal or unsupported join type is seen, then still return
79459 ** seen combinations of the N values. A new entry is made in iTab
79570 ** and this row has been seen before, then do not make this row
88987 /* If this index is the best we have seen so far, then record this
90211 WhereCost bestPlan; /* Most efficient plan seen so far */
94002 ** they intend to abandon the parse upon the first syntax error seen.
94889 ** Whenever the CREATE TRIGGER keywords are seen, the statement
94894 ** (0) INVALID We have not yet seen a non-whitespace character.
94903 ** (3) EXPLAIN The keyword EXPLAIN has been seen at the beginning of
94906 ** (4) CREATE The keyword CREATE has been seen at the beginning of a
94913 ** (6) SEMI We've seen the first semicolon in the ";END;" that occurs at
94916 ** (7) END We've seen the ";END" of the ";END;" that occurs at the end
97590 int seen = 0;
97598 if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1;
97599 assert( p2->xUnlockNotify==p->xUnlockNotify || !seen );