Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3WhereBegin

10284 ** Flags appropriate for the wctrlFlags parameter of sqlite3WhereBegin()
10306 u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */
11088 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**, u16);
81431 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0,WHERE_DUPLICATES_OK);
83843 pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0);
93633 WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */
93844 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pOrderBy, 0);
93970 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pGroupBy, 0);
94201 ** A special flag must be passed to sqlite3WhereBegin() to slightly
94230 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pMinMax, flag);
96012 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0, WHERE_ONEPASS_DESIRED);
98070 ** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[]
101166 u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */
101702 ** sqlite3WhereBegin(<term>)
101741 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
101784 pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrTerm->pExpr, 0,
101893 ** by the most recent call to sqlite3WhereBegin(). Each call to WhereBegin
101951 ** foreach row2 in t2 do |-- by sqlite3WhereBegin()
101969 ** The code that sqlite3WhereBegin() generates leaves the cursors named
102020 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(
102516 ** sqlite3WhereBegin() for additional information.
102573 /* Close all of the cursors that were opened by sqlite3WhereBegin.
102600 ** Calls to the code generator in between sqlite3WhereBegin and