Lines Matching defs:SQLiteConnection

17 #define LOG_TAG "SQLiteConnection"
69 struct SQLiteConnection {
87 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) :
93 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
100 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
107 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
115 if (openFlags & SQLiteConnection::CREATE_IF_NECESSARY) {
117 } else if (openFlags & SQLiteConnection::OPEN_READONLY) {
162 SQLiteConnection* connection = new SQLiteConnection(db, openFlags, path, label);
177 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
248 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
272 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
285 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
316 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
328 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
336 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
344 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
352 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
368 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
379 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
390 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
401 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
416 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
430 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
442 static int executeNonQuery(JNIEnv* env, SQLiteConnection* connection, sqlite3_stmt* statement) {
455 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
463 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
472 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
480 static int executeOneRowQuery(JNIEnv* env, SQLiteConnection* connection, sqlite3_stmt* statement) {
490 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
502 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
552 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
670 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
764 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
773 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
779 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
875 return AndroidRuntime::registerNativeMethods(env, "android/database/sqlite/SQLiteConnection",