Lines Matching defs:pRowid

5753   int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
38099 ** Write the element into *pRowid. Return 1 on success. Return
38105 SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){
38113 *pRowid = p->pEntry->v;
102850 Expr *pRowid, /* Expression used to recompute the rowid */
102871 if( pRowid ){
102873 sqlite3ExprDup(db, pRowid, 0));
102891 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, pTab->nCol+1+(pRowid!=0));
102904 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1);
102906 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i);
122333 ** rowid should be written to *pRowid.
122335 static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
122337 *pRowid = pCsr->iPrevId;
122406 sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */
122408 return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid);
125094 sqlite_int64 *pRowid /* OUT: Rowid value */
125097 *pRowid = pCsr->iRowid;
128586 sqlite_int64 *pRowid /* OUT: Rowid value */
128589 *pRowid = (sqlite3_int64)pCsr->iRowid;
129574 sqlite3_value *pRowid = apVal[p->nColumn+3];
129575 if( sqlite3_value_type(pRowid)==SQLITE_NULL ){
129576 pRowid = apVal[1];
129578 if( sqlite3_value_type(pRowid)!=SQLITE_INTEGER ){
129581 *piDocid = sqlite3_value_int64(pRowid);
129677 sqlite3_value *pRowid, /* The docid to be deleted */
129686 rc = fts3SqlStmt(p, SQL_SELECT_CONTENT_BY_ROWID, &pSelect, &pRowid);
130981 ** pRowid would mean the FTS3 table were empty.
130984 ** document pRowid, or false otherwise, and SQLITE_OK is returned. If an
130987 static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){
130995 rc = fts3SqlStmt(p, SQL_IS_EMPTY, &pStmt, &pRowid);
133832 ** SQLite value pRowid contains the rowid of a row that may or may not be
133838 sqlite3_value *pRowid,
133843 int bFound = 0; /* True if *pRowid really is in the table */
133845 fts3DeleteTerms(&rc, p, pRowid, aSzDel, &bFound);
133847 int isEmpty = 0; /* Deleting *pRowid leaves the table empty */
133848 rc = fts3IsEmpty(p, pRowid, &isEmpty);
133860 fts3SqlExec(&rc, p, SQL_DELETE_CONTENT, &pRowid);
133863 fts3SqlExec(&rc, p, SQL_DELETE_DOCSIZE, &pRowid);
133889 sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */
133971 rc = fts3InsertData(p, apVal, pRowid);
133991 rc = fts3InsertData(p, apVal, pRowid);
133996 if( rc==SQLITE_OK && (!isRemove || *pRowid!=p->iPrevDocid ) ){
133997 rc = fts3PendingTermsDocid(p, iLangid, *pRowid);
134000 assert( p->iPrevDocid==*pRowid );
137474 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
137479 *pRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell);
139106 sqlite_int64 *pRowid
139199 *pRowid = cell.iRowid;