Searched refs:pWhere (Results 1 - 15 of 15) 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 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 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 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 Dwalker.c81 if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort;
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 Dattach.c480 if( sqlite3FixExpr(pFix, pSelect->pWhere) ){
533 if( sqlite3FixExpr(pFix, pStep->pWhere) ){
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
H A Dresolve.c1034 if( sqlite3ResolveExprNames(&sNC, p->pWhere) ||
H A Dinsert.c1653 if( pSelect->pWhere ){
H A Dexpr.c305 heightOfExpr(p->pWhere, pnHeight);
946 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
1357 if( p->pWhere ) return 0; /* Has no WHERE clause */
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10381 Expr *pWhere; /* The WHERE clause */ member in struct:Select
10694 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
10699 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
10712 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
81146 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
81188 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
83761 Expr *pWhere = 0; /* WHERE clause to scan with */ local
84253 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
89972 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
92610 Expr *pWhere; /* The WHERE clause */ local
93638 Expr *pWhere; /* The WHERE clause. May be NULL */ local
95001 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
95787 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
102020 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11697 Expr *pWhere; /* The WHERE clause */ member in struct:Select
12107 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
12112 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
12125 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
90921 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
90957 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
93965 Expr *pWhere = 0; /* WHERE clause to scan with */ local
94550 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
101528 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, u16 selFlags, Expr *pLimit, Expr *pOffset ) argument
104642 Expr *pWhere; /* The WHERE clause */ local
105985 Expr *pWhere; /* The WHERE clause. May be NULL */ local
107483 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
108273 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
108884 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
115449 whereUsablePartialIndex(int iTab, WhereClause *pWC, Expr *pWhere) argument
116852 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList *pOrderBy, ExprList *pResultSet, u16 wctrlFlags, int iIdxCur ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11697 Expr *pWhere; /* The WHERE clause */ member in struct:Select
12107 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
12112 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
12125 Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ member in struct:TriggerStep
90941 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
90977 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
93985 Expr *pWhere = 0; /* WHERE clause to scan with */ local
94570 Expr *pWhere = 0; /* WHERE clause of trigger step */ local
101548 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, u16 selFlags, Expr *pLimit, Expr *pOffset ) argument
104662 Expr *pWhere; /* The WHERE clause */ local
106005 Expr *pWhere; /* The WHERE clause. May be NULL */ local
107503 sqlite3TriggerUpdateStep( sqlite3 *db, Token *pTableName, ExprList *pEList, Expr *pWhere, u8 orconf ) argument
108293 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
108904 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
115469 whereUsablePartialIndex(int iTab, WhereClause *pWC, Expr *pWhere) argument
116872 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList *pOrderBy, ExprList *pResultSet, u16 wctrlFlags, int iIdxCur ) argument
[all...]

Completed in 6529 milliseconds