Lines Matching defs:errCode
53 static const char* GetCrashDescription(const int32_t errCode)
58 if (errCode == g_crashExceptionMap[i].errCode) {
65 void ReportCrashException(const char* pName, int32_t pid, int32_t uid, int32_t errCode)
71 ReportCrashException(std::string(pName), pid, uid, errCode);
74 void ReportCrashException(std::string name, int32_t pid, int32_t uid, int32_t errCode)
77 if (errCode == CrashExceptionCode::CRASH_ESUCCESS) {
88 "ERROR_CODE", errCode,
89 "ERROR_MSG", GetCrashDescription(errCode));
103 int32_t errCode = 0;
108 errCode = iter->second;
109 ReportCrashException(g_crashProcessName, g_crashProcessPid, g_crashProcessUid, errCode);