HomeSort by relevance Sort by last modified time
    Searched full: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 24 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
android_database_SQLiteConnection.cpp 142 throw_sqlite3_exception(env, db, "Could not open the database in read/write mode.");
150 throw_sqlite3_exception(env, db, "Could not set busy timeout");
158 throw_sqlite3_exception(env, db, "Could not register Android SQL functions.");
187 throw_sqlite3_exception(env, connection->db, "Count not close db.");
267 throw_sqlite3_exception(env, connection->db);
281 throw_sqlite3_exception(env, connection->db);
307 throw_sqlite3_exception(env, connection->db, message);
371 throw_sqlite3_exception(env, connection->db, NULL);
382 throw_sqlite3_exception(env, connection->db, NULL);
393 throw_sqlite3_exception(env, connection->db, NULL)
    [all...]
android_database_CursorWindow.cpp 188 throw_sqlite3_exception(env, "Native could not create new byte[]");
194 throw_sqlite3_exception(env, "INTEGER data in nativeGetBlob ");
196 throw_sqlite3_exception(env, "FLOAT data in nativeGetBlob ");
241 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
330 throw_sqlite3_exception(env, "Unable to convert BLOB to string");
359 throw_sqlite3_exception(env, "Unable to convert BLOB to long");
390 throw_sqlite3_exception(env, "Unable to convert BLOB to double");

Completed in 123 milliseconds