Lines Matching refs:ppVal

10928 SQLITE_API int sqlite3_vtab_rhs_value(sqlite3_index_info*, int, sqlite3_value **ppVal);
87162 sqlite3_value **ppVal, /* Write the new value here */ argument
87240 *ppVal = pVal;
87262 sqlite3_value **ppVal, /* Write the new value here */ argument
87286 rc = valueFromExpr(db, pExpr->pLeft, enc, aff, ppVal, pCtx);
87288 if( *ppVal ){
87290 rc = ExpandBlob(*ppVal);
87294 assert( (ppVal[0][0].flags & MEM_Zero)==0 );
87296 sqlite3VdbeMemCast(*ppVal, aff, enc);
87297 sqlite3ValueApplyAffinity(*ppVal, affinity, enc);
87412 *ppVal = pVal;
87421 assert( *ppVal==0 );
87445 sqlite3_value **ppVal /* Write the new value here */ argument
87447 return pExpr ? valueFromExpr(db, pExpr, enc, affinity, ppVal, 0) : 0;
87474 sqlite3_value **ppVal /* OUT: New value object (or NULL) */ argument
87506 *ppVal = pVal;
87593 sqlite3_value **ppVal /* OUT: New value object (or NULL) */ argument
87595 return stat4ValueFromExpr(pParse, pExpr, affinity, 0, ppVal);
87616 sqlite3_value **ppVal /* OUT: Extracted value */ argument
87625 Mem *pMem = *ppVal; /* Write result into this Mem object */
87643 pMem = *ppVal = sqlite3ValueNew(db);
173186 sqlite3_value **ppVal /* Write value extracted here */ argument
173206 *ppVal = pVal;
234931 static int sessionStat1Old(void *pCtx, int iCol, sqlite3_value **ppVal){ argument
234938 *ppVal = pVal;
234941 static int sessionStat1New(void *pCtx, int iCol, sqlite3_value **ppVal){ argument
234948 *ppVal = pVal;
235325 static int sessionPreupdateOld(void *pCtx, int iVal, sqlite3_value **ppVal){ argument
235326 return sqlite3_preupdate_old((sqlite3*)pCtx, iVal, ppVal);
235328 static int sessionPreupdateNew(void *pCtx, int iVal, sqlite3_value **ppVal){ argument
235329 return sqlite3_preupdate_new((sqlite3*)pCtx, iVal, ppVal);
235362 static int sessionDiffOld(void *pCtx, int iVal, sqlite3_value **ppVal){ argument
235364 *ppVal = sqlite3_column_value(p->pStmt, iVal+p->nOldOff+p->bRowid);
235367 static int sessionDiffNew(void *pCtx, int iVal, sqlite3_value **ppVal){ argument
235369 *ppVal = sqlite3_column_value(p->pStmt, iVal+p->bRowid);