Home | History | Annotate | Download | only in orig

Lines Matching defs:pRowid

5437   int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
40013 ** Write the element into *pRowid. Return 1 on success. Return
40019 SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){
40027 *pRowid = p->pEntry->v;
108889 Expr *pRowid, /* Expression used to recompute the rowid */
108910 if( pRowid ){
108912 sqlite3ExprDup(db, pRowid, 0));
108930 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, pTab->nCol+1+(pRowid!=0));
108943 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1);
108945 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i);
130032 ** rowid should be written to *pRowid.
130034 static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
130036 *pRowid = pCsr->iPrevId;
130105 sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */
130107 return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid);
133141 sqlite_int64 *pRowid /* OUT: Rowid value */
133144 *pRowid = pCsr->iRowid;
136654 sqlite_int64 *pRowid /* OUT: Rowid value */
136657 *pRowid = (sqlite3_int64)pCsr->iRowid;
137654 sqlite3_value *pRowid = apVal[p->nColumn+3];
137655 if( sqlite3_value_type(pRowid)==SQLITE_NULL ){
137656 pRowid = apVal[1];
137658 if( sqlite3_value_type(pRowid)!=SQLITE_INTEGER ){
137661 *piDocid = sqlite3_value_int64(pRowid);
137757 sqlite3_value *pRowid, /* The docid to be deleted */
137766 rc = fts3SqlStmt(p, SQL_SELECT_CONTENT_BY_ROWID, &pSelect, &pRowid);
139074 ** pRowid would mean the FTS3 table were empty.
139077 ** document pRowid, or false otherwise, and SQLITE_OK is returned. If an
139080 static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){
139088 rc = fts3SqlStmt(p, SQL_IS_EMPTY, &pStmt, &pRowid);
142143 ** SQLite value pRowid contains the rowid of a row that may or may not be
142149 sqlite3_value *pRowid,
142154 int bFound = 0; /* True if *pRowid really is in the table */
142156 fts3DeleteTerms(&rc, p, pRowid, aSzDel, &bFound);
142158 int isEmpty = 0; /* Deleting *pRowid leaves the table empty */
142159 rc = fts3IsEmpty(p, pRowid, &isEmpty);
142171 fts3SqlExec(&rc, p, SQL_DELETE_CONTENT, &pRowid);
142174 fts3SqlExec(&rc, p, SQL_DELETE_DOCSIZE, &pRowid);
142200 sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */
142289 rc = fts3InsertData(p, apVal, pRowid);
142309 rc = fts3InsertData(p, apVal, pRowid);
142314 if( rc==SQLITE_OK && (!isRemove || *pRowid!=p->iPrevDocid ) ){
142315 rc = fts3PendingTermsDocid(p, iLangid, *pRowid);
142318 assert( p->iPrevDocid==*pRowid );
146046 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
146052 *pRowid = nodeGetRowid(RTREE_OF_CURSOR(pCsr), pNode, p->iCell);
147444 sqlite_int64 *pRowid
147537 *pRowid = cell.iRowid;