• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/sqlite/

Lines Matching refs:sqlite3WhereBegin

9726 ** Flags appropriate for the wctrlFlags parameter of sqlite3WhereBegin()
9748 u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */
10505 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**, u16);
78240 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0,WHERE_DUPLICATES_OK);
80657 pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0);
90222 WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */
90423 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pOrderBy, 0);
90545 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pGroupBy, 0);
90772 ** A special flag must be passed to sqlite3WhereBegin() to slightly
90801 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pMinMax, flag);
92563 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0, WHERE_ONEPASS_DESIRED);
94606 ** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[]
96943 ** when the main sqlite3WhereBegin() loop is scanning for a table with
97786 ** sqlite3WhereBegin(<term>)
97827 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
97870 pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrTerm->pExpr, 0,
97978 ** by the most recent call to sqlite3WhereBegin(). Each call to WhereBegin
98036 ** foreach row2 in t2 do |-- by sqlite3WhereBegin()
98054 ** The code that sqlite3WhereBegin() generates leaves the cursors named
98105 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(
98613 ** sqlite3WhereBegin() for additional information.
98670 /* Close all of the cursors that were opened by sqlite3WhereBegin.
98697 ** Calls to the code generator in between sqlite3WhereBegin and