Searched defs:errcode (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.cpp114 static std::string sqlite3_error_code_to_msg(int errcode) { argument
115 auto it = sErrorCodesMap.find(errcode);
117 return std::to_string(errcode) + " " + it->second;
119 return std::to_string(errcode);
154 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) { argument
155 throw_sqlite3_exception(env, errcode, "unknown error", message);
161 void throw_sqlite3_exception(JNIEnv* env, int errcode, argument
164 switch (errcode & 0xff) { /* mask off extended error code */
226 std::string errcode_msg = sqlite3_error_code_to_msg(errcode);
/frameworks/av/include/media/
H A DAudioRecord.h724 void markError(status_t errcode, const char *func) argument
725 { mLastError = errcode; mLastErrorFunc = func;}
/frameworks/av/media/libaudioclient/include/media/
H A DAudioRecord.h724 void markError(status_t errcode, const char *func) argument
725 { mLastError = errcode; mLastErrorFunc = func;}

Completed in 65 milliseconds