HomeSort by relevance Sort by last modified time
    Searched refs:throw_sqlite3_exception (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/jni/
android_database_SQLiteCommon.h 33 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle);
36 void throw_sqlite3_exception(JNIEnv* env, const char* message);
41 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message);
46 void throw_sqlite3_exception(JNIEnv* env, int errcode,
android_database_SQLiteCommon.cpp 124 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) { function in namespace:android
125 throw_sqlite3_exception(env, handle, NULL);
129 void throw_sqlite3_exception(JNIEnv* env, const char* message) { function in namespace:android
130 throw_sqlite3_exception(env, NULL, message);
136 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) { function in namespace:android
142 throw_sqlite3_exception(env, sqlite3_extended_errcode(handle),
147 throw_sqlite3_exception(env, SQLITE_OK, "unknown error", message);
155 throw_sqlite3_exception(env, errcode, "unknown error", message);
161 void throw_sqlite3_exception(JNIEnv* env, int errcode, function in namespace:android
android_database_SQLiteConnection.cpp 145 throw_sqlite3_exception(env, db, "Cannot set lookaside");
153 throw_sqlite3_exception(env, db, "Could not open the database in read/write mode.");
161 throw_sqlite3_exception(env, db, "Could not set busy timeout");
169 throw_sqlite3_exception(env, db, "Could not register Android SQL functions.");
198 throw_sqlite3_exception(env, connection->db, "Count not close db.");
278 throw_sqlite3_exception(env, connection->db);
292 throw_sqlite3_exception(env, connection->db);
318 throw_sqlite3_exception(env, connection->db, message);
382 throw_sqlite3_exception(env, connection->db, NULL);
393 throw_sqlite3_exception(env, connection->db, NULL)
    [all...]
android_database_CursorWindow.cpp 209 throw_sqlite3_exception(env, "Native could not read blob slot");
215 throw_sqlite3_exception(env, "Native could not create new byte[]");
221 throw_sqlite3_exception(env, "INTEGER data in nativeGetBlob ");
223 throw_sqlite3_exception(env, "FLOAT data in nativeGetBlob ");
248 throw_sqlite3_exception(env, "Native could not read string slot");
272 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
361 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
390 throw_sqlite3_exception(env, "Unable to convert BLOB to long");
421 throw_sqlite3_exception(env, "Unable to convert BLOB to double");

Completed in 168 milliseconds