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
|