/external/sqlite/dist/orig/ |
sqlite3ext.h | 37 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*,int,const void*,int,void(*)(void*)) [all...] |
sqlite3.h | 3108 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt [all...] |
shell.c | 550 sqlite3_stmt *pStmt; /* Current statement if any. */ [all...] |
sqlite3.c | 3322 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt [all...] |
/external/sqlite/dist/ |
sqlite3ext.h | 37 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*,int,const void*,int,void(*)(void*)) [all...] |
sqlite3.h | 3108 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt [all...] |
shell.c | 556 sqlite3_stmt *pStmt; /* Current statement if any. */ [all...] |
sqlite3.c | 3322 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt [all...] |
/frameworks/base/core/jni/ |
android_database_SQLiteConnection.cpp | 291 sqlite3_stmt* statement; 319 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); 330 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); 337 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); 344 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); 351 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr) [all...] |
/external/javasqlite/src/main/native/ |
sqlite_jni.c | 71 sqlite3_stmt *stmt; /* For callback() */ 795 sqlite3_finalize((sqlite3_stmt *) v->vm); 804 sqlite3_finalize((sqlite3_stmt *) v->vm); [all...] |
/external/sqlite/android/ |
sqlite3_android.cpp | 210 sqlite3_stmt * statement = (sqlite3_stmt *)data; 289 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0);
|