Searched defs:iRow (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeblob.c38 ** the b-tree cursor associated with blob handle p to point to row iRow.
53 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){ argument
58 /* Set the value of the SQL statements only variable to integer iRow.
63 v->aVar[0].u.i = iRow;
91 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
113 sqlite_int64 iRow, /* The row containing the glob */
311 sqlite3_bind_int64(pBlob->pStmt, 1, iRow);
312 rc = blobSeekToRow(pBlob, iRow, &zErr);
436 int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){ argument
452 rc = blobSeekToRow(p, iRow,
108 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
[all...]
H A Dtclsqlite.c337 sqlite_int64 iRow,
350 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
2310 sqlite_int64 iRow;
2327 rc = Tcl_GetWideIntFromObj(interp, objv[objc-1], &iRow);
2331 interp, pDb, zDb, zTable, zColumn, iRow, isReadonly
331 createIncrblobChannel( Tcl_Interp *interp, SqliteDb *pDb, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int isReadonly ) argument
H A Dbtree.c465 ** rowid iRow is being replaced or deleted. In this case invalidate
470 i64 iRow, /* The rowid that might be changing */
477 if( p->isIncrblobHandle && (isClearTable || p->info.nKey==iRow) ){
468 invalidateIncrblobCursors( Btree *pBtree, i64 iRow, int isClearTable ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c679 /* select content from %_content where rowid = [iRow]
681 static int content_select(fulltext_vtab *v, sqlite_int64 iRow, argument
687 rc = sqlite3_bind_int64(s, 1, iRow);
704 /* delete from %_content where rowid = [iRow ] */
705 static int content_delete(fulltext_vtab *v, sqlite_int64 iRow){ argument
710 rc = sqlite3_bind_int64(s, 1, iRow);
1427 static int index_delete(fulltext_vtab *v, sqlite_int64 iRow){ argument
1432 int rc = content_select(v, iRow, &zText);
1435 rc = build_terms(&terms, v->pTokenizer, zText, iRow);
1440 rc = index_delete_term(v, HashKey(e), HashKeysize(e), iRow);
[all...]
H A Dfts1.c1292 /* select * from %_content where rowid = [iRow]
1298 static int content_select(fulltext_vtab *v, sqlite_int64 iRow, argument
1310 rc = sqlite3_bind_int64(s, 1, iRow);
1337 /* delete from %_content where rowid = [iRow ] */
1338 static int content_delete(fulltext_vtab *v, sqlite_int64 iRow){ argument
1343 rc = sqlite3_bind_int64(s, 1, iRow);
3127 static int index_delete(fulltext_vtab *v, sqlite_int64 iRow, fts1Hash *pTerms){ argument
3128 int rc = deleteTerms(v, pTerms, iRow);
3130 return content_delete(v, iRow); /* execute an SQL DELETE */
3135 static int index_update(fulltext_vtab *v, sqlite_int64 iRow, argument
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c1114 i64 iRow = 1; local
1120 &err, &db, "REPLACE INTO t1 VALUES(:iRow, randomblob(300))", &iRow
1122 iRow++;
1123 if( iRow==10 ) iRow = 0;
1228 const char *zInsert = "INSERT INTO t1 VALUES(:iRow, zeroblob(:iBlob))";
1229 i64 iRow; local
1231 for(iRow=1; iRow<
1239 i64 iRow; local
1248 i64 iRow; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c2232 /* select * from %_content where rowid = [iRow]
2238 static int content_select(fulltext_vtab *v, sqlite_int64 iRow, argument
2250 rc = sqlite3_bind_int64(s, 1, iRow);
2277 /* delete from %_content where rowid = [iRow ] */
2278 static int content_delete(fulltext_vtab *v, sqlite_int64 iRow){ argument
2283 rc = sqlite3_bind_int64(s, 1, iRow);
4224 static int index_delete(fulltext_vtab *v, sqlite_int64 iRow){ argument
4225 int rc = initPendingTerms(v, iRow);
4228 rc = deleteTerms(v, iRow);
4231 return content_delete(v, iRow); /* execut
4238 index_update(fulltext_vtab *v, sqlite_int64 iRow, sqlite3_value **pValues) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5409 ** in row iRow, column zColumn, table zTable in database zDb;
5413 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5466 sqlite3_int64 iRow,
47766 invalidateIncrblobCursors( Btree *pBtree, i64 iRow, int isClearTable ) argument
68660 blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr) argument
68715 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
69043 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c5769 ** in row iRow, column zColumn, table zTable in database zDb;
5773 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5826 sqlite3_int64 iRow,
49830 invalidateIncrblobCursors( Btree *pBtree, i64 iRow, int isClearTable ) argument
71226 blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr) argument
71281 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
71612 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c5769 ** in row iRow, column zColumn, table zTable in database zDb;
5773 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5826 sqlite3_int64 iRow,
49858 invalidateIncrblobCursors( Btree *pBtree, i64 iRow, int isClearTable ) argument
71254 blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr) argument
71309 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
71640 sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow) argument
[all...]

Completed in 955 milliseconds