Searched refs:errcode (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_database_SQLiteCommon.cpp | 54 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) { in throw_sqlite3_exception_errcode() argument 55 throw_sqlite3_exception(env, errcode, "unknown error", message); in throw_sqlite3_exception_errcode() 61 void throw_sqlite3_exception(JNIEnv* env, int errcode, in throw_sqlite3_exception() argument 64 switch (errcode & 0xff) { /* mask off extended error code */ in throw_sqlite3_exception() 126 fullMessage.appendFormat(" (code %d)", errcode); // print extended error code in throw_sqlite3_exception()
|
D | android_database_SQLiteCommon.h | 44 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message); 46 void throw_sqlite3_exception(JNIEnv* env, int errcode,
|