Lines Matching refs:exception
114 struct CrashDumpException exception;
115 (void)memset_s(&exception, sizeof(struct CrashDumpException), 0, sizeof(struct CrashDumpException));
116 exception.pid = g_request->pid;
117 exception.uid = (int32_t)(g_request->uid);
118 exception.error = err;
119 exception.time = (int64_t)(GetTimeMilliseconds());
120 if (strncpy_s(exception.message, sizeof(exception.message), GetCrashDescription(err),
121 sizeof(exception.message) - 1) != 0) {
122 DFXLOGE("strcpy exception message fail");
125 ReportException(exception);