Searched defs:pWhere (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Ddelete.c86 ** pWhere argument is an optional WHERE clause that restricts the
92 Expr *pWhere, /* Optional WHERE clause to be added */
100 if( pWhere ){
103 pWhere = sqlite3ExprDup(db, pWhere, 0);
114 pDup = sqlite3SelectNew(pParse, 0, pFrom, pWhere, 0, 0, 0, 0, 0, 0);
134 Expr *pWhere, /* The WHERE clause. May be null */
161 return pWhere;
187 pSelect = sqlite3SelectNew(pParse,pEList,pSelectSrc,pWhere,0,0,
208 sqlite3ExprDelete(pParse->db, pWhere);
89 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
131 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
[all...]
H A Dupdate.c26 Expr *pWhere /* WHERE clause of the UPDATE statement */
86 * onError pTabList pChanges pWhere
92 Expr *pWhere, /* The WHERE clause. May be null */
270 pWhere);
271 pWhere = 0;
299 sqlite3MaterializeView(pParse, pTab, pWhere, iCur);
306 if( sqlite3ResolveExprNames(&sNC, pWhere) ){
313 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0, WHERE_ONEPASS_DESIRED);
560 sqlite3ExprDelete(db, pWhere);
600 Expr *pWhere /* WHER
88 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
[all...]
H A Dfkey.c469 Expr *pWhere = 0; /* WHERE clause to scan with */ local
518 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
538 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
545 sqlite3ResolveExprNames(&sNameContext, pWhere);
551 pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0);
561 sqlite3ExprDelete(db, pWhere);
597 sqlite3ExprDelete(dbMem, pStep->pWhere);
961 Expr *pWhere local
[all...]
H A Dtrigger.c24 sqlite3ExprDelete(db, pTmp->pWhere);
419 Expr *pWhere, /* The WHERE clause */
427 pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE);
431 sqlite3ExprDelete(db, pWhere);
443 Expr *pWhere /* The WHERE clause */
449 pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE);
452 sqlite3ExprDelete(db, pWhere);
725 sqlite3ExprDup(db, pStep->pWhere,
415 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
[all...]
H A Dselect.c25 sqlite3ExprDelete(db, p->pWhere);
54 Expr *pWhere, /* the WHERE clause */
76 pNew->pWhere = pWhere;
354 isOuter, &p->pWhere);
372 p->pWhere = sqlite3ExprAnd(pParse->db, p->pWhere, pRight->pOn);
401 isOuter, &p->pWhere);
2549 p->pWhere = substExpr(db, p->pWhere, iTabl
50 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
2688 Expr *pWhere; /* The WHERE clause */ local
3716 Expr *pWhere; /* The WHERE clause. May be NULL */ local
[all...]
H A Dwhere.c472 mask |= exprTableUsage(pMaskSet, pS->pWhere);
4369 Expr *pWhere, /* The WHERE clause */
4436 sqlite3ExprCodeConstants(pParse, pWhere);
4437 whereSplit(pWC, pWhere, TK_AND); /* IMP: R-15842-53296 */
4442 if( pWhere && (nTabList==0 || sqlite3ExprIsConstantNotJoin(pWhere)) ){
4443 sqlite3ExprIfFalse(pParse, pWhere, pWInfo->iBreak, SQLITE_JUMPIFNULL);
4444 pWhere = 0;
4366 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
H A DsqliteInt.h2036 Expr *pWhere; /* The WHERE clause */ member in struct:Select
2349 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
2354 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
2367 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10396 Expr *pWhere; /* The WHERE clause */ member in struct:Select
10709 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
10714 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
10727 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
81353 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
81395 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
83968 Expr *pWhere = 0; /* WHERE clause to scan with */ local
84460 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
90179 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
92817 Expr *pWhere; /* The WHERE clause */ local
93845 Expr *pWhere; /* The WHERE clause. May be NULL */ local
95208 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
95994 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
102227 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10952 Expr *pWhere; /* The WHERE clause */ member in struct:Select
11265 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
11270 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
11283 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
85560 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
85602 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
88222 Expr *pWhere = 0; /* WHERE clause to scan with */ local
88731 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
94551 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
97227 Expr *pWhere; /* The WHERE clause */ local
98266 Expr *pWhere; /* The WHERE clause. May be NULL */ local
99741 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
100529 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
101039 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
107147 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, ExprList *pDistinct, u16 wctrlFlags ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10952 Expr *pWhere; /* The WHERE clause */ member in struct:Select
11265 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
11270 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
11283 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
85596 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
85638 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
88258 Expr *pWhere = 0; /* WHERE clause to scan with */ local
88767 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
94587 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
97263 Expr *pWhere; /* The WHERE clause */ local
98302 Expr *pWhere; /* The WHERE clause. May be NULL */ local
99777 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
100565 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
101075 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
107183 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, ExprList *pDistinct, u16 wctrlFlags ) argument
[all...]

Completed in 667 milliseconds