HomeSort by relevance Sort by last modified time
    Searched refs:pWhere (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
delete.c 86 ** 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);
    [all...]
fkey.c 469 Expr *pWhere = 0; /* WHERE clause to scan with */
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);
    [all...]
update.c 26 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 /* WHERE clause of the UPDATE statement *
    [all...]
trigger.c 24 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, 0),
    [all...]
walker.c 81 if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort;
select.c 25 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);
    [all...]
attach.c 480 if( sqlite3FixExpr(pFix, pSelect->pWhere) ){
533 if( sqlite3FixExpr(pFix, pStep->pWhere) ){
where.c 472 mask |= exprTableUsage(pMaskSet, pS->pWhere);
    [all...]
sqliteInt.h     [all...]
resolve.c     [all...]
insert.c     [all...]
expr.c 305 heightOfExpr(p->pWhere, pnHeight);
946 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 438 milliseconds