Searched refs:iRowid (Results 1 - 17 of 17) 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.c1108 i64 iRowid; /* rowid parsed. */ member in struct:RecoverLeafCursor
1302 u64 iRowid; /* iCell's rowid (in table). */ local
1344 nRead += getVarint(pCell + nRead, &iRowid);
1346 pCursor->iRowid = (i64)iRowid;
1416 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/sqlite/dist/orig/
H A Dsqlite3.h7474 sqlite3_int64 iRowid; /* Rowid for current entry */ member in struct:sqlite3_rtree_query_info
H A Dsqlite3.c7589 sqlite3_int64 iRowid; /* Rowid for current entry */ member in struct:sqlite3_rtree_query_info
40046 sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid) argument
83683 i64 iRowid; /* Rowid in main table of the key */ member in union:Stat4Sample::__anon31014
83739 sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid) argument
132670 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
136309 int iRowid; /* Current 'rowid' value */ member in struct:Fts3tokCursor
144955 i64 iRowid; /* Node or entry ID */ member in struct:RtreeCell
145713 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
146095 findLeafNode( Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf, sqlite3_int64 *piNode ) argument
146192 i64 iRowid = sqlite3_value_int64(argv[0]); local
146579 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
146839 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
146957 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
146968 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.h7474 sqlite3_int64 iRowid; /* Rowid for current entry */ member in struct:sqlite3_rtree_query_info
H A Dsqlite3.c7589 sqlite3_int64 iRowid; /* Rowid for current entry */ member in struct:sqlite3_rtree_query_info
40066 sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid) argument
83703 i64 iRowid; /* Rowid in main table of the key */ member in union:Stat4Sample::__anon31045
83759 sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid) argument
132702 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
136341 int iRowid; /* Current 'rowid' value */ member in struct:Fts3tokCursor
144987 i64 iRowid; /* Node or entry ID */ member in struct:RtreeCell
145745 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
146127 findLeafNode( Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf, sqlite3_int64 *piNode ) argument
146224 i64 iRowid = sqlite3_value_int64(argv[0]); local
146611 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
146871 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
146989 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
147000 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c36285 sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid) argument
50652 sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid) argument
81425 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */ local
81535 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
111348 i64 iRowid; /* rowid parsed. */ member in struct:RecoverLeafCursor
111542 u64 iRowid; /* iCell's rowid (in table). */ local
116230 sqlite3_int64 iRowid; local
116802 sqlite3_int64 iRowid; /* Current rowid */ member in struct:Fts3auxCursor
124539 i64 iRowid; member in struct:RtreeCell
125269 sqlite3_int64 iRowid; local
125319 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
125415 i64 iRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell); local
125438 findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf) argument
125521 i64 iRowid = sqlite3_value_int64(argv[0]); local
125945 rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode) argument
126411 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
126528 i64 iRowid = nodeGetRowid(pRtree, pRight, i); local
126539 i64 iRowid = nodeGetRowid(pRtree, pLeft, i); local
[all...]

Completed in 627 milliseconds