Home
last modified time | relevance | path

Searched refs:errcode (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/jni/
Dandroid_database_SQLiteCommon.cpp114 static std::string sqlite3_error_code_to_msg(int errcode) { in sqlite3_error_code_to_msg() argument
115 auto it = sErrorCodesMap.find(errcode); in sqlite3_error_code_to_msg()
117 return std::to_string(errcode) + " " + it->second; in sqlite3_error_code_to_msg()
119 return std::to_string(errcode); in sqlite3_error_code_to_msg()
154 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) { in throw_sqlite3_exception_errcode() argument
155 throw_sqlite3_exception(env, errcode, "unknown error", message); in throw_sqlite3_exception_errcode()
161 void throw_sqlite3_exception(JNIEnv* env, int errcode, in throw_sqlite3_exception() argument
164 switch (errcode & 0xff) { /* mask off extended error code */ in throw_sqlite3_exception()
226 std::string errcode_msg = sqlite3_error_code_to_msg(errcode); in throw_sqlite3_exception()
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,
/frameworks/av/media/libaudioclient/include/media/
DAudioRecord.h838 void markError(status_t errcode, const char *func) in markError() argument
839 { mLastError = errcode; mLastErrorFunc = func;} in markError()
/frameworks/base/core/api/
Dcurrent.txt24107 field public static final String ERROR_CODE = "android.media.mediaplayer.errcode";