Searched refs:sqlite3_bind_blob (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_sqlite3.cc544 status = sqlite3_bind_blob(replace_stmt, 1, key, 16, SQLITE_STATIC);
546 status = sqlite3_bind_blob(replace_stmt, 2, value,
617 status = sqlite3_bind_blob(read_stmt, 1, key, 16, SQLITE_STATIC);
/external/chromium/app/sql/
H A Dstatement.cc131 int err = CheckError(sqlite3_bind_blob(ref_->stmt(), col + 1,
/external/chromium_org/sql/
H A Dstatement.cc149 sqlite3_bind_blob(ref_->stmt(), col + 1, val, val_len, SQLITE_TRANSIENT));
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c238 sqlite3_bind_blob(pStmt, 2, &p, sizeof(p), SQLITE_STATIC);
H A Dfts2.c2317 rc = sqlite3_bind_blob(s, 1, pData, nData, SQLITE_STATIC);
2413 rc = sqlite3_bind_blob(s, 6, pRootData, nRootData, SQLITE_STATIC);
/external/chromium_org/third_party/sqlite/src/src/
H A Dloadext.c134 sqlite3_bind_blob,
H A Dvdbeapi.c1058 int sqlite3_bind_blob( function
1134 rc = sqlite3_bind_blob(pStmt, i, pValue->z, pValue->n,SQLITE_TRANSIENT);
H A Dsqlite3ext.h233 #define sqlite3_bind_blob sqlite3_api->bind_blob macro
H A Dsqlite.h.in2835 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
2838 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
2873 int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
2889 ** placeholders for values that are [sqlite3_bind_blob | bound]
2897 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2924 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2935 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
2940 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2950 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
3410 ** the [sqlite3_bind_blob | sqlite3_bind
[all...]
H A Dtclsqlite.c1151 sqlite3_bind_blob(pStmt, i, data, n, SQLITE_STATIC);
H A Dtest1.c3239 ** Usage: sqlite3_bind_blob ?-static? STMT N DATA BYTES
3241 ** Test the sqlite3_bind_blob interface. STMT is a prepared statement.
3274 rc = sqlite3_bind_blob(pStmt, idx, value, bytes, xDestructor);
5557 { "sqlite3_bind_blob", test_bind_blob ,0 },
/external/chromium/chrome/common/
H A Dsqlite_utils.cc343 return sqlite3_bind_blob(stmt_, index + 1, value, value_len, dtor);
/external/chromium_org/third_party/WebKit/Source/core/platform/sql/
H A DSQLiteStatement.cpp173 return sqlite3_bind_blob(m_statement, index, blob, size, SQLITE_TRANSIENT);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_write.c1440 sqlite3_bind_blob(pStmt, 2, z, n, SQLITE_STATIC);
1468 sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC);
2354 sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free);
2432 sqlite3_bind_blob(pStmt, 1, pBlob, nBlob, SQLITE_STATIC);
/external/sqlite/dist/orig/
H A Dsqlite3ext.h257 #define sqlite3_bind_blob sqlite3_api->bind_blob macro
H A Dsqlite3.h3149 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
3152 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
3187 SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
3203 ** placeholders for values that are [sqlite3_bind_blob | bound]
3211 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3238 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3249 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
3254 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3264 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
3730 ** the [sqlite3_bind_blob | sqlite3_bind
[all...]
H A Dsqlite3.c3699 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
3702 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
3737 SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
3753 ** placeholders for values that are [sqlite3_bind_blob | bound]
3761 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3788 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3799 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
3804 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3814 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
4280 ** the [sqlite3_bind_blob | sqlite3_bind
63813 SQLITE_API int sqlite3_bind_blob( function
91230 #define sqlite3_bind_blob macro
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h257 #define sqlite3_bind_blob sqlite3_api->bind_blob macro
H A Dsqlite3.h3149 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
3152 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
3187 SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
3203 ** placeholders for values that are [sqlite3_bind_blob | bound]
3211 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3238 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3249 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
3254 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3264 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
3730 ** the [sqlite3_bind_blob | sqlite3_bind
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c795 rc = sqlite3_bind_blob(s, 3, doclist->pData, doclist->nData, SQLITE_STATIC);
808 rc = sqlite3_bind_blob(s, 1, doclist->pData, doclist->nData,
H A Dfts1.c1468 rc = sqlite3_bind_blob(s, 4, doclist->pData, doclist->nData, SQLITE_STATIC);
1481 rc = sqlite3_bind_blob(s, 1, doclist->pData, doclist->nData, SQLITE_STATIC);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h2840 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
2843 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
2878 SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
2894 ** placeholders for values that are [sqlite3_bind_blob | bound]
2902 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2929 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2940 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
2945 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
2955 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
3415 ** the [sqlite3_bind_blob | sqlite3_bind
[all...]
H A Dsqlite3.c3383 ** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
3386 ** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(),
3421 SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
3437 ** placeholders for values that are [sqlite3_bind_blob | bound]
3445 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3472 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3483 ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
3488 ** See also: [sqlite3_bind_blob|sqlite3_bind()],
3498 ** the [sqlite3_bind_blob | bindings] on a [prepared statement].
3958 ** the [sqlite3_bind_blob | sqlite3_bind
61571 SQLITE_API int sqlite3_bind_blob( function
86922 #define sqlite3_bind_blob macro
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c620 sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC);
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c3828 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,
3831 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,

Completed in 741 milliseconds

12