Searched defs:pRowid (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Drowset.c376 ** Write the element into *pRowid. Return 1 on success. Return
382 int sqlite3RowSetNext(RowSet *p, i64 *pRowid){ argument
385 *pRowid = p->pEntry->v;
H A Dtest_intarray.c138 static int intarrayRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
140 *pRowid = pCur->i;
H A Dtest_schema.c152 static int schemaRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
154 *pRowid = pCur->rowid;
H A Dtest_tclvar.c217 static int tclvarRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
218 *pRowid = 0;
H A Dtest_wholenumber.c111 static int wholenumberRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
113 *pRowid = pCur->iValue;
H A Dupdate.c598 Expr *pRowid, /* Expression used to recompute the rowid */
618 if( pRowid ){
620 sqlite3ExprDup(db, pRowid, 0));
638 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, pTab->nCol+1+(pRowid!=0));
651 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1);
653 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i);
593 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
H A Dtest_fuzzer.c720 static int fuzzerRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
722 *pRowid = pCur->iRowid;
805 sqlite_int64 *pRowid
H A Dtest_stat.c536 static int statRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
538 *pRowid = pCsr->iPageno;
H A Dtest8.c629 static int echoRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ argument
636 *pRowid = sqlite3_column_int64(pStmt, 0);
927 sqlite_int64 *pRowid
1041 if( pRowid && rc==SQLITE_OK ){
1042 *pRowid = sqlite3_last_insert_rowid(db);
H A Drecover.c1848 static int recoverRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){ argument
1851 *pRowid = leafCursorCellRowid(pCursor->pLeafCursor);
H A Dtest_osinst.c1056 static int vlogRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
1058 *pRowid = pCsr->iRowid;
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c1280 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
1283 *pRowid = sqlite3_column_int64(c->pStmt, 0);
1453 sqlite_int64 *pRowid){
1466 (const char *)sqlite3_value_text(ppArg[2]), pRowid);
1452 fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, sqlite_int64 *pRowid) argument
H A Dfts1.c2958 ** rowid should be written to *pRowid.
2960 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
2963 *pRowid = sqlite3_column_int64(c->pStmt, 0);
3152 sqlite_int64 *pRowid){
3186 rc = index_insert(v, ppArg[1], &ppArg[2], pRowid, &terms);
3151 fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, sqlite_int64 *pRowid) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c3132 ** rowid should be written to *pRowid.
3134 static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
3137 *pRowid = pCsr->iPrevId;
3144 *pRowid = sqlite3_column_int64(pCsr->pStmt, 0);
3196 sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */
3198 return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid);
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1129 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){ argument
1134 *pRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell);
2635 sqlite_int64 *pRowid
2772 *pRowid = cell.iRowid;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c4097 ** rowid should be written to *pRowid.
4099 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ argument
4102 *pRowid = sqlite3_column_int64(c->pStmt, 0);
6252 sqlite_int64 *pRowid){
6299 rc = index_insert(v, ppArg[1], &ppArg[2], pRowid);
6251 fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, sqlite_int64 *pRowid) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5146 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
36267 sqlite3RowSetNext(RowSet *p, i64 *pRowid) argument
96292 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
112088 recoverRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid) argument
116195 fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid) argument
125397 rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c5437 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
40019 sqlite3RowSetNext(RowSet *p, i64 *pRowid) argument
108884 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
130034 fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid) argument
137654 sqlite3_value *pRowid = apVal[p->nColumn+3]; local
137754 fts3DeleteTerms( int *pRC, Fts3Table *p, sqlite3_value *pRowid, u32 *aSz, int *pbFound ) argument
139080 fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty) argument
142147 fts3DeleteByRowid( Fts3Table *p, sqlite3_value *pRowid, int *pnChng, u32 *aSzDel ) argument
146046 rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c5437 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
40039 sqlite3RowSetNext(RowSet *p, i64 *pRowid) argument
108904 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
130054 fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid) argument
137686 sqlite3_value *pRowid = apVal[p->nColumn+3]; local
137786 fts3DeleteTerms( int *pRC, Fts3Table *p, sqlite3_value *pRowid, u32 *aSz, int *pbFound ) argument
139112 fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty) argument
142179 fts3DeleteByRowid( Fts3Table *p, sqlite3_value *pRowid, int *pnChng, u32 *aSzDel ) argument
146078 rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid) argument
[all...]

Completed in 839 milliseconds