Searched refs:errcode (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/core/jni/ |
H A D | android_database_SQLiteCommon.cpp | 114 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);
|
H A 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,
|
/frameworks/av/include/media/ |
H A D | AudioRecord.h | 724 void markError(status_t errcode, const char *func) argument 725 { mLastError = errcode; mLastErrorFunc = func;}
|
/frameworks/av/media/libaudioclient/include/media/ |
H A D | AudioRecord.h | 724 void markError(status_t errcode, const char *func) argument 725 { mLastError = errcode; mLastErrorFunc = func;}
|
Completed in 25 milliseconds