Home | History | Annotate | Download | only in browser

Lines Matching defs:info

44 void CrashDumpTask(CrashHandlerHostLinux* handler, BreakpadInfo* info) {
48 HandleCrashDump(*info);
49 delete[] info->filename;
50 delete[] info->process_type;
51 delete[] info->crash_url;
52 delete[] info->guid;
53 delete[] info->distro;
54 delete info;
289 BreakpadInfo* info = new BreakpadInfo;
291 info->process_type_length = process_type_.length();
292 char* process_type_str = new char[info->process_type_length + 1];
293 process_type_.copy(process_type_str, info->process_type_length);
294 process_type_str[info->process_type_length] = '\0';
295 info->process_type = process_type_str;
297 info->crash_url_length = strlen(crash_url);
298 info->crash_url = crash_url;
300 info->guid_length = strlen(guid);
301 info->guid = guid;
303 info->distro_length = strlen(distro);
304 info->distro = distro;
306 info->upload = (getenv(env_vars::kHeadless) == NULL);
307 info->process_start_time = uptime;
313 info,
319 void CrashHandlerHostLinux::WriteDumpFile(BreakpadInfo* info,
327 if (!info->upload)
344 info->filename = minidump_filename_str;
350 info,
354 void CrashHandlerHostLinux::QueueCrashDumpTask(BreakpadInfo* info,
371 NewRunnableFunction(&CrashDumpTask, this, info));