Searched refs:iRowid (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Ddelete.c368 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */ local
376 regRowid = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iCur, iRowid);
396 addr = sqlite3VdbeAddOp3(v, OP_RowSetRead, iRowSet, end, iRowid);
403 sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iRowid, pVTab, P4_VTAB);
409 sqlite3GenerateRowDelete(pParse, pTab, iCur, iRowid, count, pTrigger, OE_Default);
473 ** memory cell iRowid.
482 int iRowid, /* Memory cell that contains the rowid to delete */
498 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, iLabel, iRowid);
517 sqlite3VdbeAddOp2(v, OP_Copy, iRowid, iOld);
533 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, iLabel, iRowid);
478 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
[all...]
H A Drowset.c397 ** Check to see if element iRowid was inserted into the the rowset as
400 int sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid){ argument
413 if( p->v<iRowid ){
415 }else if( p->v>iRowid ){
H A Dtest_fuzzer.c172 sqlite3_int64 iRowid; /* The rowid of the current word */ member in struct:fuzzer_cursor
602 pCur->iRowid++;
691 pCur->iRowid = 1;
722 *pRowid = pCur->iRowid;
H A Drecover.c1091 i64 iRowid; /* rowid parsed. */ member in struct:RecoverLeafCursor
1284 u64 iRowid; /* iCell's rowid (in table). */ local
1322 nRead += getVarint(pCell + nRead, &iRowid);
1324 pCursor->iRowid = (i64)iRowid;
1394 return pCursor->iRowid;
H A Dtest_osinst.c813 sqlite3_int64 iRowid; /* Current rowid. */ member in struct:VfslogCsr
1002 pCsr->iRowid += 1;
1019 pCsr->iRowid = 0;
1058 *pRowid = pCsr->iRowid;
H A Dtest1.c1776 Tcl_WideInt iRowid; local
1786 if( Tcl_GetWideIntFromObj(interp, objv[2], &iRowid) ) return TCL_ERROR;
1788 rc = sqlite3_blob_reopen(pBlob, iRowid);
H A Dbtree.c3524 ** set to iRowid.
3533 void sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid){ argument
3536 if( p->pgnoRoot==pCur->pgnoRoot ) p->cachedRowid = iRowid;
3538 assert( pCur->cachedRowid==iRowid );
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c271 i64 iRowid; member in struct:RtreeCell
560 p += writeInt64(p, pCell->iRowid);
697 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell);
1001 sqlite3_int64 iRowid; local
1017 iRowid = nodeGetRowid(pRtree, pCursor->pNode, pCursor->iCell);
1018 rc = nodeAcquire(pRtree, iRowid, pCursor->pNode, &pChild);
1049 ** integer value equal to iRowid. Return the index of this cell.
1054 i64 iRowid,
1060 if( nodeGetRowid(pRtree, pNode, ii)==iRowid ){
1147 i64 iRowid local
1051 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
1170 findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf) argument
1253 i64 iRowid = sqlite3_value_int64(argv[0]); local
1677 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
2143 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
2260 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
2271 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c36 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
244 pCsr->iRowid++;
433 *pRowid = pCsr->iRowid;
H A Dfts3.c3169 sqlite3_int64 iRowid; local
3170 rc = fts3RowidMethod(pCursor, &iRowid);
3171 sqlite3_result_int64(pContext, iRowid);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c1264 * where rowid = [iRowid] */
1266 sqlite_int64 iRowid){
1277 rc = sqlite3_bind_int64(s, 1+v->nColumn, iRowid);
3083 static int insertTerms(fulltext_vtab *v, fts1Hash *terms, sqlite_int64 iRowid, argument
3088 int rc = buildTerms(v, terms, iRowid, zText, i);
3096 static int deleteTerms(fulltext_vtab *v, fts1Hash *pTerms, sqlite_int64 iRowid){ argument
3100 int rc = content_select(v, iRowid, &pValues);
3104 rc = buildTerms(v, pTerms, iRowid, pValues[i], -1);
1265 content_update(fulltext_vtab *v, sqlite3_value **pValues, sqlite_int64 iRowid) argument
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c2204 * where rowid = [iRowid] */
2206 sqlite_int64 iRowid){
2217 rc = sqlite3_bind_int64(s, 1+v->nColumn, iRowid);
4168 static int insertTerms(fulltext_vtab *v, sqlite_int64 iRowid, argument
4173 int rc = buildTerms(v, iRowid, zText, i);
4182 static int deleteTerms(fulltext_vtab *v, sqlite_int64 iRowid){ argument
4189 rc = content_select(v, iRowid, &pValues);
4193 rc = buildTerms(v, iRowid, pValues[i], -1);
2205 content_update(fulltext_vtab *v, sqlite3_value **pValues, sqlite_int64 iRowid) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c36298 sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid) argument
50831 sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid) argument
81632 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */ local
81742 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
111544 i64 iRowid; /* rowid parsed. */ member in struct:RecoverLeafCursor
111737 u64 iRowid; /* iCell's rowid (in table). */ local
116421 sqlite3_int64 iRowid; local
116993 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
124730 i64 iRowid; member in struct:RtreeCell
125460 sqlite3_int64 iRowid; local
125510 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
125606 i64 iRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell); local
125629 findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf) argument
125712 i64 iRowid = sqlite3_value_int64(argv[0]); local
126136 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
126602 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
126719 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
126730 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c38263 sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid) argument
52920 sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid) argument
79485 i64 iRowid; /* Rowid in main table of the key */ member in struct:Stat3Accum::Stat3Sample
85838 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */ local
85951 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
121845 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
130384 i64 iRowid; member in struct:RtreeCell
131114 sqlite3_int64 iRowid; local
131164 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
131260 i64 iRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell); local
131283 findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf) argument
131366 i64 iRowid = sqlite3_value_int64(argv[0]); local
131795 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
132261 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
132378 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
132389 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c38291 sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid) argument
52948 sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid) argument
79521 i64 iRowid; /* Rowid in main table of the key */ member in struct:Stat3Accum::Stat3Sample
85874 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */ local
85987 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
121893 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
130432 i64 iRowid; member in struct:RtreeCell
131162 sqlite3_int64 iRowid; local
131212 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
131308 i64 iRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell); local
131331 findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf) argument
131414 i64 iRowid = sqlite3_value_int64(argv[0]); local
131843 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
132309 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
132426 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
132437 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]

Completed in 1060 milliseconds