• 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:aConstraint

4714 ** ^(The aConstraint[] array records WHERE clause constraints of the form:
4719 ** stored in aConstraint[].op.)^ ^(The index of the column is stored in
4720 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
4727 ** ^The aConstraint[] array only reports WHERE clause terms that are
4735 ** the right-hand side of the corresponding aConstraint[] is evaluated
4756 int nConstraint; /* Number of entries in aConstraint */
4762 } *aConstraint; /* Table of WHERE clause constraints */
88023 p->aConstraint[i].iColumn,
88024 p->aConstraint[i].iTermOffset,
88025 p->aConstraint[i].op,
88026 p->aConstraint[i].usable);
88213 *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint = pIdxCons;
88287 if( !p->aConstraint[i].usable && p->aConstraintUsage[i].argvIndex>0 ){
88362 /* Set the aConstraint[].usable fields and initialize all
88365 ** aConstraint[].usable is true for constraints where the right-hand
88382 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
88408 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
89382 const struct sqlite3_index_constraint *aConstraint =
89383 pVtabIdx->aConstraint;
89390 int iTerm = aConstraint[k].iTermOffset;
89404 int iTerm = aConstraint[j].iTermOffset;
99167 struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i];
107394 int nConstraint; /* Number of entries in aConstraint */
107395 RtreeConstraint *aConstraint; /* Search constraints. */
107961 sqlite3_free(pCsr->aConstraint);
107981 ** (excluded) by the constraints in the pCursor->aConstraint[]
107991 RtreeConstraint *p = &pCursor->aConstraint[ii];
108014 ** pCursor->aConstraint[] array, or false otherwise.
108024 RtreeConstraint *p = &pCursor->aConstraint[ii];
108244 sqlite3_free(pCsr->aConstraint);
108245 pCsr->aConstraint = 0;
108258 /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array
108262 pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc);
108264 if( !pCsr->aConstraint ){
108269 RtreeConstraint *p = &pCsr->aConstraint[ii];
108349 struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii];