Searched refs:sqlite3_stmt (Results 1 - 25 of 54) sorted by relevance

123

/external/sqlite/dist/orig/
H A Dsqlite3ext.h37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
38 int (*bind_double)(sqlite3_stmt*,int,double);
39 int (*bind_int)(sqlite3_stmt*,int,int);
40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
41 int (*bind_null)(sqlite3_stmt*,int);
42 int (*bind_parameter_count)(sqlite3_stmt*);
43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
44 const char * (*bind_parameter_name)(sqlite3_stmt*,int);
45 int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
46 int (*bind_text16)(sqlite3_stmt*,in
[all...]
H A Dsqlite3.h2988 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3142 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3180 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3187 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3194 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3201 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3212 SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt);
3243 SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt);
3262 SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*);
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
38 int (*bind_double)(sqlite3_stmt*,int,double);
39 int (*bind_int)(sqlite3_stmt*,int,int);
40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
41 int (*bind_null)(sqlite3_stmt*,int);
42 int (*bind_parameter_count)(sqlite3_stmt*);
43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
44 const char * (*bind_parameter_name)(sqlite3_stmt*,int);
45 int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
46 int (*bind_text16)(sqlite3_stmt*,in
[all...]
H A Dsqlite3.h2988 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3142 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3180 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3187 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3194 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3201 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3212 SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt);
3243 SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt);
3262 SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*);
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dsqlite3ext.h37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
38 int (*bind_double)(sqlite3_stmt*,int,double);
39 int (*bind_int)(sqlite3_stmt*,int,int);
40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
41 int (*bind_null)(sqlite3_stmt*,int);
42 int (*bind_parameter_count)(sqlite3_stmt*);
43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
44 const char * (*bind_parameter_name)(sqlite3_stmt*,int);
45 int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
46 int (*bind_text16)(sqlite3_stmt*,in
[all...]
H A Dsqlite.h.in2484 typedef struct sqlite3_stmt sqlite3_stmt;
2635 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
2673 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2680 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2687 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2694 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2705 const char *sqlite3_sql(sqlite3_stmt *pStmt);
2736 int sqlite3_stmt_readonly(sqlite3_stmt *pStmt);
2814 ** a pointer to the [sqlite3_stmt] objec
[all...]
H A Dvdbeapi.c28 int sqlite3_expired(sqlite3_stmt *pStmt){
65 int sqlite3_finalize(sqlite3_stmt *pStmt){
97 int sqlite3_reset(sqlite3_stmt *pStmt){
116 int sqlite3_clear_bindings(sqlite3_stmt *pStmt){
365 sqlite3_reset((sqlite3_stmt*)p);
370 sqlite3_reset((sqlite3_stmt*)p);
467 int sqlite3_step(sqlite3_stmt *pStmt){
661 int sqlite3_column_count(sqlite3_stmt *pStmt){
670 int sqlite3_data_count(sqlite3_stmt *pStmt){
683 static Mem *columnMem(sqlite3_stmt *pStm
[all...]
H A Dtest9.c115 sqlite3_stmt *pStmt;
140 pStmt = (sqlite3_stmt*)1234;
148 pStmt = (sqlite3_stmt*)1234;
157 pStmt = (sqlite3_stmt*)1234;
164 pStmt = (sqlite3_stmt*)1234;
H A Dtest_schema.c61 sqlite3_stmt *pDbList;
62 sqlite3_stmt *pTableList;
63 sqlite3_stmt *pColumnList;
158 static int finalize(sqlite3_stmt **ppStmt){
200 sqlite3_stmt *pDbList = pCur->pDbList;
H A Dtest_server.c119 ** (an sqlite3_stmt* object) should only be passed to a single interface
225 sqlite3_stmt *pStmt; /* A specific statement */
344 sqlite3_stmt **ppStmt,
357 int sqlite3_client_step(sqlite3_stmt *pStmt){
364 int sqlite3_client_reset(sqlite3_stmt *pStmt){
371 int sqlite3_client_finalize(sqlite3_stmt *pStmt){
H A Dprepare.c77 sqlite3_stmt *pStmt;
525 int saveSqlFlag, /* True to copy SQL text into the sqlite3_stmt */
527 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
657 *ppStmt = (sqlite3_stmt*)pParse->pVdbe;
685 int saveSqlFlag, /* True to copy SQL text into the sqlite3_stmt */
687 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
718 sqlite3_stmt *pNew;
723 zSql = sqlite3_sql((sqlite3_stmt *)p);
738 sqlite3TransferBindings(pNew, (sqlite3_stmt*)p);
757 sqlite3_stmt **ppStm
[all...]
H A Dvacuum.c25 static int vacuumFinalize(sqlite3 *db, sqlite3_stmt *pStmt, char **pzErrMsg){
38 sqlite3_stmt *pStmt;
57 sqlite3_stmt *pStmt;
H A Dtest1.c172 ** Convert an sqlite3_stmt* into an sqlite3*. This depends on the
196 ** Decode a pointer to an sqlite3_stmt object.
201 sqlite3_stmt **ppStmt
203 *ppStmt = (sqlite3_stmt*)sqlite3TestTextToPtr(zArg);
2205 sqlite3_stmt *pStmt;
2240 sqlite3_stmt *pStmt;
2282 sqlite3_stmt *pStmt;
2314 sqlite3_stmt *pStmt;
2341 sqlite3_stmt *pStmt;
2377 sqlite3_stmt *pStm
[all...]
H A Dtest_thread.c487 int sqlite3_blocking_step(sqlite3_stmt *pStmt){
512 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
536 sqlite3_stmt *pStmt;
544 pStmt = (sqlite3_stmt*)sqlite3TestTextToPtr(Tcl_GetString(objv[1]));
565 sqlite3_stmt *pStmt = 0;
H A Dlegacy.c39 sqlite3_stmt *pStmt = 0; /* The current SQL statement */
H A Dtest8.c90 sqlite3_stmt *pStmt;
163 sqlite3_stmt *pStmt = 0;
241 sqlite3_stmt *pStmt = 0;
267 sqlite3_stmt *pStmt2 = 0;
337 sqlite3_stmt *pStmt = 0;
567 sqlite3_stmt *pStmt = pCur->pStmt;
611 sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
630 sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
776 sqlite3_stmt *pStmt = 0;
933 sqlite3_stmt *pStm
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h2489 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
2640 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
2678 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2685 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2692 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2699 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2710 SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt);
2741 SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt);
2819 ** a pointer to the [sqlite3_stmt] objec
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteStatement.h31 struct sqlite3_stmt;
73 sqlite3_stmt* m_statement;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h131 sqlite3_stmt *aStmt[24];
166 sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */
292 int sqlite3Fts3AllSegdirs(Fts3Table*, int, sqlite3_stmt **);
296 int sqlite3Fts3SelectDoctotal(Fts3Table *, sqlite3_stmt **);
297 int sqlite3Fts3SelectDocsize(Fts3Table *, sqlite3_int64, sqlite3_stmt **);
H A Dfts3_write.c204 sqlite3_stmt **pp, /* OUT: Statement handle */
240 sqlite3_stmt *pStmt;
279 sqlite3_stmt **ppStmt /* OUT: Statement handle */
281 sqlite3_stmt *pStmt = 0; /* Statement requested from fts3SqlStmt() */
307 sqlite3_stmt **ppStmt /* OUT: Statement handle */
315 sqlite3_stmt **ppStmt /* OUT: Statement handle */
334 sqlite3_stmt *pStmt;
365 sqlite3_stmt *pStmt; /* Statement used to obtain lock */
393 int sqlite3Fts3AllSegdirs(Fts3Table *p, int iLevel, sqlite3_stmt **ppStmt){
395 sqlite3_stmt *pStm
[all...]
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c71 sqlite3_stmt *stmt; /* For callback() */
795 sqlite3_finalize((sqlite3_stmt *) v->vm);
804 sqlite3_finalize((sqlite3_stmt *) v->vm);
2483 sqlite3_finalize((sqlite3_stmt *) v->vm);
2492 sqlite3_finalize((sqlite3_stmt *) v->vm);
2530 sqlite3_finalize((sqlite3_stmt *) v->vm);
2634 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2636 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2654 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2658 ncol = sqlite3_data_count((sqlite3_stmt *)
[all...]
/external/chromium_org/sql/
H A Dconnection.h23 struct sqlite3_stmt;
472 StatementRef(Connection* connection, sqlite3_stmt* stmt, bool was_valid);
489 sqlite3_stmt* stmt() const { return stmt_; }
506 sqlite3_stmt* stmt_;
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c512 static int sql_prepare(sqlite3 *db, const char *zName, sqlite3_stmt **ppStmt,
571 sqlite3_stmt *pFulltextStatements[MAX_STMT];
578 sqlite3_stmt *pStmt;
597 sqlite3_stmt **ppStmt){
619 sqlite3_stmt **ppStmt){
621 sqlite3_stmt *s = *ppStmt;
626 sqlite3_stmt *pNewStmt;
658 sqlite3_stmt **ppStmt){
666 sqlite3_stmt *s;
683 sqlite3_stmt *
[all...]
/external/sqlite/android/
H A Dsqlite3_android.cpp210 sqlite3_stmt * statement = (sqlite3_stmt *)data;
289 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c229 sqlite3_stmt *pStmt;
251 sqlite3_stmt *pStmt;

Completed in 1185 milliseconds

123