• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Heimdal-398.1.2/lib/sqlite/

Lines Matching defs:WhereInfo

7910 typedef struct WhereInfo WhereInfo;
10550 ** For each nested loop in a WHERE clause implementation, the WhereInfo
10595 ** and the WhereInfo.wctrlFlags member.
10614 struct WhereInfo {
11396 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**,ExprList*,u16);
11397 SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo*);
83631 WhereInfo *pWInfo; /* Information about the WHERE clause */
86143 WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */
96081 WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */
98358 WhereInfo *pWInfo; /* Information about the WHERE clause */
104121 WhereInfo *pWInfo, /* Complete information about the WHERE clause */
104659 WhereInfo *pSubWInfo; /* Info for single OR-term scan */
104781 ** Free a WhereInfo structure
104783 static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){
104897 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(
104906 int nByteWInfo; /* Num. bytes allocated for WhereInfo struct */
104908 WhereInfo *pWInfo; /* Will become the return value of this function */
104935 /* Allocate and initialize the WhereInfo structure that will become the
104936 ** return value. A single allocation is used to store the WhereInfo
104937 ** struct, the contents of WhereInfo.a[], the WhereClause structure
104943 nByteWInfo = ROUND8(sizeof(WhereInfo)+(nTabList-1)*sizeof(WhereLevel));
105035 ** If it is, then set pDistinct to NULL and WhereInfo.eDistinct to
105397 /* Record the continuation address in the WhereInfo structure. Then
105415 SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo *pWInfo){