Searched refs:errcode (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.h44 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message);
46 void throw_sqlite3_exception(JNIEnv* env, int errcode,
H A Dandroid_database_SQLiteCommon.cpp54 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) { argument
55 throw_sqlite3_exception(env, errcode, "unknown error", message);
61 void throw_sqlite3_exception(JNIEnv* env, int errcode, argument
64 switch (errcode & 0xff) { /* mask off extended error code */
126 fullMessage.appendFormat(" (code %d)", errcode); // print extended error code

Completed in 78 milliseconds