Searched refs:throw_sqlite3_exception (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.h33 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,
H A Dandroid_database_SQLiteCommon.cpp24 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) { function in namespace:android
25 throw_sqlite3_exception(env, handle, NULL);
29 void throw_sqlite3_exception(JNIEnv* env, const char* message) { function in namespace:android
30 throw_sqlite3_exception(env, NULL, message);
36 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) { function in namespace:android
42 throw_sqlite3_exception(env, sqlite3_extended_errcode(handle),
47 throw_sqlite3_exception(env, SQLITE_OK, "unknown error", message);
55 throw_sqlite3_exception(env, errcode, "unknown error", message);
61 void throw_sqlite3_exception(JNIEnv* env, int errcode, function in namespace:android
H A Dandroid_database_SQLiteConnection.cpp139 throw_sqlite3_exception(env, db, "Could not open the database in read/write mode.");
147 throw_sqlite3_exception(env, db, "Could not set busy timeout");
155 throw_sqlite3_exception(env, db, "Could not register Android SQL functions.");
184 throw_sqlite3_exception(env, connection->db, "Count not close db.");
264 throw_sqlite3_exception(env, connection->db);
278 throw_sqlite3_exception(env, connection->db);
304 throw_sqlite3_exception(env, connection->db, message);
372 throw_sqlite3_exception(env, connection->db, NULL);
383 throw_sqlite3_exception(env, connection->db, NULL);
394 throw_sqlite3_exception(en
[all...]
H A Dandroid_database_CursorWindow.cpp185 throw_sqlite3_exception(env, "Native could not create new byte[]");
191 throw_sqlite3_exception(env, "INTEGER data in nativeGetBlob ");
193 throw_sqlite3_exception(env, "FLOAT data in nativeGetBlob ");
238 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
327 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
356 throw_sqlite3_exception(env, "Unable to convert BLOB to long");
387 throw_sqlite3_exception(env, "Unable to convert BLOB to double");

Completed in 60 milliseconds