├── .gitignore ├── LICENSE ├── README.md ├── breakpad.pro ├── include ├── client │ ├── linux │ │ ├── crash_generation │ │ │ ├── client_info.h │ │ │ ├── crash_generation_client.h │ │ │ └── crash_generation_server.h │ │ ├── dump_writer_common │ │ │ ├── mapping_info.h │ │ │ ├── raw_context_cpu.h │ │ │ ├── thread_info.cc │ │ │ ├── thread_info.h │ │ │ ├── ucontext_reader.cc │ │ │ └── ucontext_reader.h │ │ ├── handler │ │ │ ├── exception_handler.h │ │ │ └── minidump_descriptor.h │ │ ├── log │ │ │ └── log.h │ │ ├── microdump_writer │ │ │ └── microdump_writer.h │ │ └── minidump_writer │ │ │ ├── cpu_set.h │ │ │ ├── directory_reader.h │ │ │ ├── line_reader.h │ │ │ ├── linux_core_dumper.h │ │ │ ├── linux_dumper.h │ │ │ ├── linux_ptrace_dumper.h │ │ │ ├── minidump_writer.h │ │ │ ├── minidump_writer_unittest_utils.h │ │ │ └── proc_cpuinfo_reader.h │ ├── mac │ │ ├── crash_generation │ │ │ ├── ConfigFile.h │ │ │ ├── Inspector.h │ │ │ ├── client_info.h │ │ │ ├── crash_generation_client.h │ │ │ └── crash_generation_server.h │ │ └── handler │ │ │ ├── breakpad_nlist_64.h │ │ │ ├── dynamic_images.h │ │ │ ├── exception_handler.h │ │ │ ├── mach_vm_compat.h │ │ │ ├── minidump_generator.h │ │ │ ├── protected_memory_allocator.h │ │ │ └── ucontext_compat.h │ └── windows │ │ ├── common │ │ ├── auto_critical_section.h │ │ └── ipc_protocol.h │ │ ├── crash_generation │ │ ├── client_info.h │ │ ├── crash_generation_client.h │ │ ├── crash_generation_server.h │ │ └── minidump_generator.h │ │ └── handler │ │ └── exception_handler.h ├── common │ ├── basictypes.h │ ├── breakpad_types.h │ ├── byte_cursor.h │ ├── convert_UTF.c │ ├── convert_UTF.h │ ├── dwarf │ │ ├── bytereader-inl.h │ │ ├── bytereader.h │ │ ├── cfi_assembler.h │ │ ├── dwarf2diehandler.h │ │ ├── dwarf2enums.h │ │ ├── dwarf2reader.h │ │ ├── dwarf2reader_test_common.h │ │ ├── functioninfo.h │ │ ├── line_state_machine.h │ │ └── types.h │ ├── dwarf_cfi_to_module.h │ ├── dwarf_cu_to_module.h │ ├── dwarf_line_to_module.h │ ├── language.h │ ├── linux │ │ ├── crc32.h │ │ ├── dump_symbols.h │ │ ├── eintr_wrapper.h │ │ ├── elf_core_dump.h │ │ ├── elf_gnu_compat.h │ │ ├── elf_symbols_to_module.h │ │ ├── elfutils-inl.h │ │ ├── elfutils.h │ │ ├── file_id.h │ │ ├── google_crashdump_uploader.h │ │ ├── guid_creator.h │ │ ├── http_upload.h │ │ ├── ignore_ret.h │ │ ├── libcurl_wrapper.h │ │ ├── linux_libc_support.h │ │ ├── memory_mapped_file.h │ │ ├── safe_readlink.h │ │ └── synth_elf.h │ ├── mac │ │ ├── GTMDefines.h │ │ ├── GTMLogger.h │ │ ├── HTTPMultipartUpload.h │ │ ├── MachIPC.h │ │ ├── arch_utilities.h │ │ ├── bootstrap_compat.h │ │ ├── byteswap.h │ │ ├── dump_syms.h │ │ ├── file_id.h │ │ ├── launch_reporter.h │ │ ├── macho_id.h │ │ ├── macho_reader.h │ │ ├── macho_utilities.h │ │ ├── macho_walker.h │ │ ├── scoped_task_suspend-inl.h │ │ ├── string_utilities.h │ │ └── super_fat_arch.h │ ├── md5.h │ ├── memory.h │ ├── memory_range.h │ ├── minidump_cpu_amd64.h │ ├── minidump_cpu_arm.h │ ├── minidump_cpu_arm64.h │ ├── minidump_cpu_mips.h │ ├── minidump_cpu_ppc.h │ ├── minidump_cpu_ppc64.h │ ├── minidump_cpu_sparc.h │ ├── minidump_cpu_x86.h │ ├── minidump_exception_linux.h │ ├── minidump_exception_mac.h │ ├── minidump_exception_ps3.h │ ├── minidump_exception_solaris.h │ ├── minidump_exception_win32.h │ ├── minidump_format.h │ ├── minidump_size.h │ ├── minidump_type_helper.h │ ├── module.h │ ├── scoped_ptr.h │ ├── simple_string_dictionary.h │ ├── solaris │ │ ├── dump_symbols.h │ │ ├── file_id.h │ │ ├── guid_creator.h │ │ └── message_output.h │ ├── stabs_reader.h │ ├── stabs_to_module.h │ ├── string_conversion.h │ ├── symbol_data.h │ ├── test_assembler.h │ ├── unordered.h │ ├── using_std_string.h │ └── windows │ │ ├── dia_util.h │ │ ├── guid_string.h │ │ ├── http_upload.h │ │ ├── omap.h │ │ ├── omap_internal.h │ │ ├── pdb_source_line_writer.h │ │ └── string_utils-inl.h └── third_party │ └── lss │ └── linux_syscall_support.h ├── lib ├── linux-x64 │ └── libgoogle-breakpad.a ├── linux-x86 │ └── libgoogle-breakpad.a ├── mac │ └── libgoogle-breakpad.a ├── windows-x64 │ ├── google-breakpad-debug.lib │ └── google-breakpad-release.lib └── windows-x86 │ ├── google-breakpad-debug.lib │ └── google-breakpad-release.lib ├── sources ├── .gitignore ├── AUTHORS ├── ChangeLog ├── DEPS ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.ANDROID ├── aclocal.m4 ├── android │ ├── common-functions.sh │ ├── google_breakpad │ │ └── Android.mk │ ├── run-checks.sh │ ├── sample_app │ │ ├── README │ │ └── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── test_breakpad.cpp │ ├── test-driver │ └── test-shell.sh ├── autotools │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ └── test-driver ├── breakpad-client.pc.in ├── breakpad.pc.in ├── codereview.settings ├── configure ├── configure.ac ├── m4 │ ├── ax_pthread.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 └── src │ ├── breakpad_googletest_includes.h │ ├── build │ ├── all.gyp │ ├── common.gypi │ ├── filename_rules.gypi │ ├── gyp_breakpad │ └── testing.gypi │ ├── client │ ├── apple │ │ └── Framework │ │ │ └── BreakpadDefines.h │ ├── ios │ │ ├── Breakpad.h │ │ ├── Breakpad.mm │ │ ├── Breakpad.xcodeproj │ │ │ └── project.pbxproj │ │ ├── BreakpadController.h │ │ ├── BreakpadController.mm │ │ └── handler │ │ │ ├── ios_exception_minidump_generator.h │ │ │ └── ios_exception_minidump_generator.mm │ ├── linux │ │ ├── crash_generation │ │ │ ├── client_info.h │ │ │ ├── crash_generation_client.cc │ │ │ ├── crash_generation_client.h │ │ │ ├── crash_generation_server.cc │ │ │ └── crash_generation_server.h │ │ ├── data │ │ │ ├── linux-gate-amd.sym │ │ │ └── linux-gate-intel.sym │ │ ├── dump_writer_common │ │ │ ├── mapping_info.h │ │ │ ├── raw_context_cpu.h │ │ │ ├── thread_info.cc │ │ │ ├── thread_info.h │ │ │ ├── ucontext_reader.cc │ │ │ └── ucontext_reader.h │ │ ├── handler │ │ │ ├── exception_handler.cc │ │ │ ├── exception_handler.h │ │ │ ├── exception_handler_unittest.cc │ │ │ ├── minidump_descriptor.cc │ │ │ └── minidump_descriptor.h │ │ ├── log │ │ │ ├── log.cc │ │ │ └── log.h │ │ ├── microdump_writer │ │ │ ├── microdump_writer.cc │ │ │ ├── microdump_writer.h │ │ │ └── microdump_writer_unittest.cc │ │ ├── minidump_writer │ │ │ ├── cpu_set.h │ │ │ ├── cpu_set_unittest.cc │ │ │ ├── directory_reader.h │ │ │ ├── directory_reader_unittest.cc │ │ │ ├── line_reader.h │ │ │ ├── line_reader_unittest.cc │ │ │ ├── linux_core_dumper.cc │ │ │ ├── linux_core_dumper.h │ │ │ ├── linux_core_dumper_unittest.cc │ │ │ ├── linux_dumper.cc │ │ │ ├── linux_dumper.h │ │ │ ├── linux_dumper_unittest_helper.cc │ │ │ ├── linux_ptrace_dumper.cc │ │ │ ├── linux_ptrace_dumper.h │ │ │ ├── linux_ptrace_dumper_unittest.cc │ │ │ ├── minidump_writer.cc │ │ │ ├── minidump_writer.h │ │ │ ├── minidump_writer_unittest.cc │ │ │ ├── minidump_writer_unittest_utils.cc │ │ │ ├── minidump_writer_unittest_utils.h │ │ │ ├── proc_cpuinfo_reader.h │ │ │ └── proc_cpuinfo_reader_unittest.cc │ │ └── sender │ │ │ └── google_crash_report_sender.cc │ ├── mac │ │ ├── Breakpad.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Framework │ │ │ ├── Breakpad.h │ │ │ ├── Breakpad.mm │ │ │ ├── Info.plist │ │ │ ├── OnDemandServer.h │ │ │ └── OnDemandServer.mm │ │ ├── UnitTests-Info.plist │ │ ├── crash_generation │ │ │ ├── ConfigFile.h │ │ │ ├── ConfigFile.mm │ │ │ ├── Inspector.h │ │ │ ├── Inspector.mm │ │ │ ├── InspectorMain.mm │ │ │ ├── client_info.h │ │ │ ├── crash_generation_client.cc │ │ │ ├── crash_generation_client.h │ │ │ ├── crash_generation_server.cc │ │ │ └── crash_generation_server.h │ │ ├── handler │ │ │ ├── breakpad_nlist_64.cc │ │ │ ├── breakpad_nlist_64.h │ │ │ ├── dynamic_images.cc │ │ │ ├── dynamic_images.h │ │ │ ├── exception_handler.cc │ │ │ ├── exception_handler.h │ │ │ ├── mach_vm_compat.h │ │ │ ├── minidump_generator.cc │ │ │ ├── minidump_generator.h │ │ │ ├── minidump_test.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── minidump_tests32-Info.plist │ │ │ ├── minidump_tests64-Info.plist │ │ │ ├── obj-cTestCases-Info.plist │ │ │ ├── protected_memory_allocator.cc │ │ │ ├── protected_memory_allocator.h │ │ │ ├── testcases │ │ │ │ ├── DynamicImagesTests.cc │ │ │ │ ├── DynamicImagesTests.h │ │ │ │ ├── breakpad_nlist_test.cc │ │ │ │ ├── breakpad_nlist_test.h │ │ │ │ ├── dwarftests.h │ │ │ │ ├── dwarftests.mm │ │ │ │ └── testdata │ │ │ │ │ ├── dump_syms_dwarf_data │ │ │ │ │ └── dump_syms_i386_breakpad.sym │ │ │ └── ucontext_compat.h │ │ ├── sender │ │ │ ├── Breakpad.xib │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ReporterIcon.graffle │ │ │ ├── crash_report_sender-Info.plist │ │ │ ├── crash_report_sender.h │ │ │ ├── crash_report_sender.icns │ │ │ ├── crash_report_sender.m │ │ │ ├── da.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── goArrow.png │ │ │ ├── it.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── no.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── sl.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ ├── uploader.h │ │ │ └── uploader.mm │ │ ├── testapp │ │ │ ├── Controller.h │ │ │ ├── Controller.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── TestClass.h │ │ │ ├── TestClass.mm │ │ │ ├── bomb.icns │ │ │ ├── crashInMain │ │ │ ├── crashduringload │ │ │ └── main.m │ │ └── tests │ │ │ ├── BreakpadFramework_Test.mm │ │ │ ├── crash_generation_server_test.cc │ │ │ ├── exception_handler_test.cc │ │ │ ├── minidump_generator_test.cc │ │ │ ├── minidump_generator_test_helper.cc │ │ │ ├── spawn_child_process.h │ │ │ └── testlogging.h │ ├── minidump_file_writer-inl.h │ ├── minidump_file_writer.cc │ ├── minidump_file_writer.h │ ├── minidump_file_writer_unittest.cc │ ├── solaris │ │ └── handler │ │ │ ├── Makefile │ │ │ ├── exception_handler.cc │ │ │ ├── exception_handler.h │ │ │ ├── exception_handler_test.cc │ │ │ ├── minidump_generator.cc │ │ │ ├── minidump_generator.h │ │ │ ├── minidump_test.cc │ │ │ ├── solaris_lwp.cc │ │ │ └── solaris_lwp.h │ └── windows │ │ ├── breakpad_client.gyp │ │ ├── common │ │ ├── auto_critical_section.h │ │ └── ipc_protocol.h │ │ ├── crash_generation │ │ ├── ReadMe.txt │ │ ├── client_info.cc │ │ ├── client_info.h │ │ ├── crash_generation.gyp │ │ ├── crash_generation_client.cc │ │ ├── crash_generation_client.h │ │ ├── crash_generation_server.cc │ │ ├── crash_generation_server.h │ │ ├── minidump_generator.cc │ │ └── minidump_generator.h │ │ ├── handler │ │ ├── exception_handler.cc │ │ ├── exception_handler.gyp │ │ └── exception_handler.h │ │ ├── sender │ │ ├── crash_report_sender.cc │ │ ├── crash_report_sender.gyp │ │ └── crash_report_sender.h │ │ ├── tests │ │ └── crash_generation_app │ │ │ ├── abstract_class.cc │ │ │ ├── abstract_class.h │ │ │ ├── crash_generation_app.cc │ │ │ ├── crash_generation_app.gyp │ │ │ ├── crash_generation_app.h │ │ │ ├── crash_generation_app.ico │ │ │ ├── crash_generation_app.rc │ │ │ ├── resource.h │ │ │ └── small.ico │ │ └── unittests │ │ ├── client_tests.gyp │ │ ├── crash_generation_server_test.cc │ │ ├── dump_analysis.cc │ │ ├── dump_analysis.h │ │ ├── exception_handler_death_test.cc │ │ ├── exception_handler_nesting_test.cc │ │ ├── exception_handler_test.cc │ │ ├── exception_handler_test.h │ │ ├── minidump_test.cc │ │ └── testing.gyp │ ├── common │ ├── android │ │ ├── breakpad_getcontext.S │ │ ├── breakpad_getcontext_unittest.cc │ │ ├── include │ │ │ ├── elf.h │ │ │ ├── link.h │ │ │ ├── sgidefs.h │ │ │ ├── stab.h │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── signal.h │ │ │ │ └── user.h │ │ │ └── ucontext.h │ │ ├── testing │ │ │ ├── include │ │ │ │ └── wchar.h │ │ │ ├── mkdtemp.h │ │ │ └── pthread_fixes.h │ │ └── ucontext_constants.h │ ├── basictypes.h │ ├── byte_cursor.h │ ├── byte_cursor_unittest.cc │ ├── common.gyp │ ├── convert_UTF.c │ ├── convert_UTF.h │ ├── dwarf │ │ ├── bytereader-inl.h │ │ ├── bytereader.cc │ │ ├── bytereader.h │ │ ├── bytereader_unittest.cc │ │ ├── cfi_assembler.cc │ │ ├── cfi_assembler.h │ │ ├── dwarf2diehandler.cc │ │ ├── dwarf2diehandler.h │ │ ├── dwarf2diehandler_unittest.cc │ │ ├── dwarf2enums.h │ │ ├── dwarf2reader.cc │ │ ├── dwarf2reader.h │ │ ├── dwarf2reader_cfi_unittest.cc │ │ ├── dwarf2reader_die_unittest.cc │ │ ├── dwarf2reader_test_common.h │ │ ├── functioninfo.cc │ │ ├── functioninfo.h │ │ ├── line_state_machine.h │ │ └── types.h │ ├── dwarf_cfi_to_module.cc │ ├── dwarf_cfi_to_module.h │ ├── dwarf_cfi_to_module_unittest.cc │ ├── dwarf_cu_to_module.cc │ ├── dwarf_cu_to_module.h │ ├── dwarf_cu_to_module_unittest.cc │ ├── dwarf_line_to_module.cc │ ├── dwarf_line_to_module.h │ ├── dwarf_line_to_module_unittest.cc │ ├── language.cc │ ├── language.h │ ├── linux │ │ ├── crc32.cc │ │ ├── crc32.h │ │ ├── dump_symbols.cc │ │ ├── dump_symbols.h │ │ ├── dump_symbols_unittest.cc │ │ ├── eintr_wrapper.h │ │ ├── elf_core_dump.cc │ │ ├── elf_core_dump.h │ │ ├── elf_core_dump_unittest.cc │ │ ├── elf_gnu_compat.h │ │ ├── elf_symbols_to_module.cc │ │ ├── elf_symbols_to_module.h │ │ ├── elf_symbols_to_module_unittest.cc │ │ ├── elfutils-inl.h │ │ ├── elfutils.cc │ │ ├── elfutils.h │ │ ├── file_id.cc │ │ ├── file_id.h │ │ ├── file_id_unittest.cc │ │ ├── google_crashdump_uploader.cc │ │ ├── google_crashdump_uploader.h │ │ ├── google_crashdump_uploader_test.cc │ │ ├── guid_creator.cc │ │ ├── guid_creator.h │ │ ├── http_upload.cc │ │ ├── http_upload.h │ │ ├── ignore_ret.h │ │ ├── libcurl_wrapper.cc │ │ ├── libcurl_wrapper.h │ │ ├── linux_libc_support.cc │ │ ├── linux_libc_support.h │ │ ├── linux_libc_support_unittest.cc │ │ ├── memory_mapped_file.cc │ │ ├── memory_mapped_file.h │ │ ├── memory_mapped_file_unittest.cc │ │ ├── safe_readlink.cc │ │ ├── safe_readlink.h │ │ ├── safe_readlink_unittest.cc │ │ ├── synth_elf.cc │ │ ├── synth_elf.h │ │ ├── synth_elf_unittest.cc │ │ └── tests │ │ │ ├── auto_testfile.h │ │ │ ├── crash_generator.cc │ │ │ └── crash_generator.h │ ├── mac │ │ ├── Breakpad.xcconfig │ │ ├── BreakpadDebug.xcconfig │ │ ├── BreakpadRelease.xcconfig │ │ ├── GTMDefines.h │ │ ├── GTMLogger.h │ │ ├── GTMLogger.m │ │ ├── HTTPMultipartUpload.h │ │ ├── HTTPMultipartUpload.m │ │ ├── MachIPC.h │ │ ├── MachIPC.mm │ │ ├── arch_utilities.cc │ │ ├── arch_utilities.h │ │ ├── bootstrap_compat.cc │ │ ├── bootstrap_compat.h │ │ ├── byteswap.h │ │ ├── dump_syms.h │ │ ├── dump_syms.mm │ │ ├── file_id.cc │ │ ├── file_id.h │ │ ├── launch_reporter.cc │ │ ├── launch_reporter.h │ │ ├── macho_id.cc │ │ ├── macho_id.h │ │ ├── macho_reader.cc │ │ ├── macho_reader.h │ │ ├── macho_reader_unittest.cc │ │ ├── macho_utilities.cc │ │ ├── macho_utilities.h │ │ ├── macho_walker.cc │ │ ├── macho_walker.h │ │ ├── scoped_task_suspend-inl.h │ │ ├── string_utilities.cc │ │ ├── string_utilities.h │ │ ├── super_fat_arch.h │ │ └── testing │ │ │ ├── GTMSenTestCase.h │ │ │ └── GTMSenTestCase.m │ ├── md5.cc │ ├── md5.h │ ├── memory.h │ ├── memory_range.h │ ├── memory_range_unittest.cc │ ├── memory_unittest.cc │ ├── minidump_type_helper.h │ ├── module.cc │ ├── module.h │ ├── module_unittest.cc │ ├── scoped_ptr.h │ ├── simple_string_dictionary.cc │ ├── simple_string_dictionary.h │ ├── simple_string_dictionary_unittest.cc │ ├── solaris │ │ ├── dump_symbols.cc │ │ ├── dump_symbols.h │ │ ├── file_id.cc │ │ ├── file_id.h │ │ ├── guid_creator.cc │ │ ├── guid_creator.h │ │ └── message_output.h │ ├── stabs_reader.cc │ ├── stabs_reader.h │ ├── stabs_reader_unittest.cc │ ├── stabs_to_module.cc │ ├── stabs_to_module.h │ ├── stabs_to_module_unittest.cc │ ├── string_conversion.cc │ ├── string_conversion.h │ ├── symbol_data.h │ ├── test_assembler.cc │ ├── test_assembler.h │ ├── test_assembler_unittest.cc │ ├── testdata │ │ └── func-line-pairing.h │ ├── tests │ │ ├── auto_tempdir.h │ │ ├── file_utils.cc │ │ └── file_utils.h │ ├── unordered.h │ ├── using_std_string.h │ └── windows │ │ ├── common_windows.gyp │ │ ├── dia_util.cc │ │ ├── dia_util.h │ │ ├── guid_string.cc │ │ ├── guid_string.h │ │ ├── http_upload.cc │ │ ├── http_upload.h │ │ ├── omap.cc │ │ ├── omap.h │ │ ├── omap_internal.h │ │ ├── omap_unittest.cc │ │ ├── pdb_source_line_writer.cc │ │ ├── pdb_source_line_writer.h │ │ ├── string_utils-inl.h │ │ └── string_utils.cc │ ├── config.h.in │ ├── google_breakpad │ ├── common │ │ ├── breakpad_types.h │ │ ├── minidump_cpu_amd64.h │ │ ├── minidump_cpu_arm.h │ │ ├── minidump_cpu_arm64.h │ │ ├── minidump_cpu_mips.h │ │ ├── minidump_cpu_ppc.h │ │ ├── minidump_cpu_ppc64.h │ │ ├── minidump_cpu_sparc.h │ │ ├── minidump_cpu_x86.h │ │ ├── minidump_exception_linux.h │ │ ├── minidump_exception_mac.h │ │ ├── minidump_exception_ps3.h │ │ ├── minidump_exception_solaris.h │ │ ├── minidump_exception_win32.h │ │ ├── minidump_format.h │ │ └── minidump_size.h │ └── processor │ │ ├── basic_source_line_resolver.h │ │ ├── call_stack.h │ │ ├── code_module.h │ │ ├── code_modules.h │ │ ├── dump_context.h │ │ ├── dump_object.h │ │ ├── exploitability.h │ │ ├── fast_source_line_resolver.h │ │ ├── memory_region.h │ │ ├── microdump.h │ │ ├── microdump_processor.h │ │ ├── minidump.h │ │ ├── minidump_processor.h │ │ ├── proc_maps_linux.h │ │ ├── process_result.h │ │ ├── process_state.h │ │ ├── source_line_resolver_base.h │ │ ├── source_line_resolver_interface.h │ │ ├── stack_frame.h │ │ ├── stack_frame_cpu.h │ │ ├── stack_frame_symbolizer.h │ │ ├── stackwalker.h │ │ ├── symbol_supplier.h │ │ └── system_info.h │ ├── processor │ ├── address_map-inl.h │ ├── address_map.h │ ├── address_map_unittest.cc │ ├── basic_code_module.h │ ├── basic_code_modules.cc │ ├── basic_code_modules.h │ ├── basic_source_line_resolver.cc │ ├── basic_source_line_resolver_types.h │ ├── basic_source_line_resolver_unittest.cc │ ├── call_stack.cc │ ├── cfi_frame_info-inl.h │ ├── cfi_frame_info.cc │ ├── cfi_frame_info.h │ ├── cfi_frame_info_unittest.cc │ ├── contained_range_map-inl.h │ ├── contained_range_map.h │ ├── contained_range_map_unittest.cc │ ├── disassembler_x86.cc │ ├── disassembler_x86.h │ ├── disassembler_x86_unittest.cc │ ├── dump_context.cc │ ├── dump_object.cc │ ├── exploitability.cc │ ├── exploitability_linux.cc │ ├── exploitability_linux.h │ ├── exploitability_unittest.cc │ ├── exploitability_win.cc │ ├── exploitability_win.h │ ├── fast_source_line_resolver.cc │ ├── fast_source_line_resolver_types.h │ ├── fast_source_line_resolver_unittest.cc │ ├── linked_ptr.h │ ├── logging.cc │ ├── logging.h │ ├── map_serializers-inl.h │ ├── map_serializers.h │ ├── map_serializers_unittest.cc │ ├── microdump.cc │ ├── microdump_processor.cc │ ├── microdump_processor_unittest.cc │ ├── microdump_stackwalk.cc │ ├── microdump_stackwalk_machine_readable_test │ ├── microdump_stackwalk_test │ ├── microdump_stackwalk_test_vars │ ├── minidump.cc │ ├── minidump_dump.cc │ ├── minidump_dump_test │ ├── minidump_processor.cc │ ├── minidump_processor_unittest.cc │ ├── minidump_stackwalk.cc │ ├── minidump_stackwalk_machine_readable_test │ ├── minidump_stackwalk_test │ ├── minidump_unittest.cc │ ├── module_comparer.cc │ ├── module_comparer.h │ ├── module_factory.h │ ├── module_serializer.cc │ ├── module_serializer.h │ ├── pathname_stripper.cc │ ├── pathname_stripper.h │ ├── pathname_stripper_unittest.cc │ ├── postfix_evaluator-inl.h │ ├── postfix_evaluator.h │ ├── postfix_evaluator_unittest.cc │ ├── proc_maps_linux.cc │ ├── proc_maps_linux_unittest.cc │ ├── process_state.cc │ ├── processor.gyp │ ├── processor_tools.gypi │ ├── proto │ │ ├── README │ │ └── process_state.proto │ ├── range_map-inl.h │ ├── range_map.h │ ├── range_map_unittest.cc │ ├── simple_serializer-inl.h │ ├── simple_serializer.h │ ├── simple_symbol_supplier.cc │ ├── simple_symbol_supplier.h │ ├── source_line_resolver_base.cc │ ├── source_line_resolver_base_types.h │ ├── stack_frame_cpu.cc │ ├── stack_frame_symbolizer.cc │ ├── stackwalk_common.cc │ ├── stackwalk_common.h │ ├── stackwalker.cc │ ├── stackwalker_address_list.cc │ ├── stackwalker_address_list.h │ ├── stackwalker_address_list_unittest.cc │ ├── stackwalker_amd64.cc │ ├── stackwalker_amd64.h │ ├── stackwalker_amd64_unittest.cc │ ├── stackwalker_arm.cc │ ├── stackwalker_arm.h │ ├── stackwalker_arm64.cc │ ├── stackwalker_arm64.h │ ├── stackwalker_arm64_unittest.cc │ ├── stackwalker_arm_unittest.cc │ ├── stackwalker_mips.cc │ ├── stackwalker_mips.h │ ├── stackwalker_mips_unittest.cc │ ├── stackwalker_ppc.cc │ ├── stackwalker_ppc.h │ ├── stackwalker_ppc64.cc │ ├── stackwalker_ppc64.h │ ├── stackwalker_selftest.cc │ ├── stackwalker_selftest_sol.s │ ├── stackwalker_sparc.cc │ ├── stackwalker_sparc.h │ ├── stackwalker_unittest_utils.h │ ├── stackwalker_x86.cc │ ├── stackwalker_x86.h │ ├── stackwalker_x86_unittest.cc │ ├── static_address_map-inl.h │ ├── static_address_map.h │ ├── static_address_map_unittest.cc │ ├── static_contained_range_map-inl.h │ ├── static_contained_range_map.h │ ├── static_contained_range_map_unittest.cc │ ├── static_map-inl.h │ ├── static_map.h │ ├── static_map_iterator-inl.h │ ├── static_map_iterator.h │ ├── static_map_unittest.cc │ ├── static_range_map-inl.h │ ├── static_range_map.h │ ├── static_range_map_unittest.cc │ ├── symbolic_constants_win.cc │ ├── symbolic_constants_win.h │ ├── synth_minidump.cc │ ├── synth_minidump.h │ ├── synth_minidump_unittest.cc │ ├── synth_minidump_unittest_data.h │ ├── testdata │ │ ├── ascii_read_av.dmp │ │ ├── ascii_read_av_block_write.dmp │ │ ├── ascii_read_av_clobber_write.dmp │ │ ├── ascii_read_av_conditional.dmp │ │ ├── ascii_read_av_then_jmp.dmp │ │ ├── ascii_read_av_xchg_write.dmp │ │ ├── ascii_write_av.dmp │ │ ├── ascii_write_av_arg_to_call.dmp │ │ ├── exec_av_on_stack.dmp │ │ ├── linux_divide_by_zero.dmp │ │ ├── linux_executable_heap.dmp │ │ ├── linux_executable_stack.dmp │ │ ├── linux_inside_module_exe_region1.dmp │ │ ├── linux_inside_module_exe_region2.dmp │ │ ├── linux_jmp_to_0.dmp │ │ ├── linux_jmp_to_module_not_exe_region.dmp │ │ ├── linux_null_dereference.dmp │ │ ├── linux_null_read_av.dmp │ │ ├── linux_outside_module.dmp │ │ ├── linux_overflow.dmp │ │ ├── linux_raise_sigabrt.dmp │ │ ├── linux_stack_pointer_in_module.dmp │ │ ├── linux_stack_pointer_in_stack.dmp │ │ ├── linux_stacksmash.dmp │ │ ├── linux_test_app.cc │ │ ├── linux_write_to_nonwritable_module.dmp │ │ ├── linux_write_to_nonwritable_region_math.dmp │ │ ├── linux_write_to_outside_module.dmp │ │ ├── linux_write_to_outside_module_via_math.dmp │ │ ├── linux_write_to_under_4k.dmp │ │ ├── microdump-arm.dmp │ │ ├── microdump-arm64.dmp │ │ ├── minidump2.dmp │ │ ├── null_read_av.dmp │ │ ├── null_write_av.dmp │ │ ├── read_av_clobber_write.dmp │ │ ├── read_av_conditional.dmp │ │ ├── read_av_non_null.dmp │ │ ├── stack_exhaustion.dmp │ │ ├── symbols │ │ │ ├── kernel32.pdb │ │ │ │ └── BCE8785C57B44245A669896B6A19B9542 │ │ │ │ │ └── kernel32.sym │ │ │ ├── libgcc_s.so.1 │ │ │ │ └── 18B180F90887D8F8B5C35D185444AF4C0 │ │ │ │ │ └── libgcc_s.so.1.sym │ │ │ ├── microdump │ │ │ │ └── breakpad_unittests │ │ │ │ │ ├── D6D1FEC9A15DE7F38A236898871A2E770 │ │ │ │ │ └── breakpad_unittests.sym │ │ │ │ │ └── DA7778FB66018A4E9B4110ED06E730D00 │ │ │ │ │ └── breakpad_unittests.sym │ │ │ ├── null_read_av │ │ │ │ └── 7B7D1968FF0D47AE4366E9C3A7E1B6750 │ │ │ │ │ └── null_read_av.sym │ │ │ ├── overflow │ │ │ │ └── B0E1FC01EF48E39CAF5C881D2DF0C3840 │ │ │ │ │ └── overflow.sym │ │ │ └── test_app.pdb │ │ │ │ └── 5A9832E5287241C1838ED98914E9B7FF1 │ │ │ │ └── test_app.sym │ │ ├── test_app.cc │ │ └── write_av_non_null.dmp │ ├── tokenize.cc │ ├── tokenize.h │ └── windows_frame_info.h │ ├── third_party │ ├── curl │ │ ├── COPYING │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ ├── typecheck-gcc.h │ │ └── types.h │ ├── libdisasm │ │ ├── Makefile.am │ │ ├── TODO │ │ ├── ia32_implicit.c │ │ ├── ia32_implicit.h │ │ ├── ia32_insn.c │ │ ├── ia32_insn.h │ │ ├── ia32_invariant.c │ │ ├── ia32_invariant.h │ │ ├── ia32_modrm.c │ │ ├── ia32_modrm.h │ │ ├── ia32_opcode_tables.c │ │ ├── ia32_opcode_tables.h │ │ ├── ia32_operand.c │ │ ├── ia32_operand.h │ │ ├── ia32_reg.c │ │ ├── ia32_reg.h │ │ ├── ia32_settings.c │ │ ├── ia32_settings.h │ │ ├── libdis.h │ │ ├── libdisasm.gyp │ │ ├── qword.h │ │ ├── swig │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── libdisasm.i │ │ │ ├── libdisasm_oop.i │ │ │ ├── perl │ │ │ │ ├── Makefile-swig │ │ │ │ └── Makefile.PL │ │ │ ├── python │ │ │ │ └── Makefile-swig │ │ │ ├── ruby │ │ │ │ ├── Makefile-swig │ │ │ │ └── extconf.rb │ │ │ └── tcl │ │ │ │ └── Makefile-swig │ │ ├── x86_disasm.c │ │ ├── x86_format.c │ │ ├── x86_imm.c │ │ ├── x86_imm.h │ │ ├── x86_insn.c │ │ ├── x86_misc.c │ │ ├── x86_operand_list.c │ │ └── x86_operand_list.h │ └── linux │ │ └── include │ │ └── gflags │ │ ├── gflags.h │ │ └── gflags_completions.h │ └── tools │ ├── linux │ ├── core2md │ │ └── core2md.cc │ ├── dump_syms │ │ └── dump_syms.cc │ ├── md2core │ │ ├── minidump-2-core.cc │ │ ├── minidump_memory_range.h │ │ └── minidump_memory_range_unittest.cc │ ├── symupload │ │ ├── minidump_upload.cc │ │ └── sym_upload.cc │ └── tools_linux.gypi │ ├── mac │ ├── crash_report │ │ ├── crash_report.mm │ │ ├── crash_report.xcodeproj │ │ │ └── project.pbxproj │ │ ├── on_demand_symbol_supplier.h │ │ └── on_demand_symbol_supplier.mm │ ├── dump_syms │ │ ├── dump_syms.xcodeproj │ │ │ └── project.pbxproj │ │ ├── dump_syms_tool.mm │ │ └── macho_dump.cc │ ├── symupload │ │ ├── minidump_upload.m │ │ ├── symupload.m │ │ └── symupload.xcodeproj │ │ │ └── project.pbxproj │ ├── tools_mac.gypi │ └── upload_system_symbols │ │ ├── arch_constants.h │ │ ├── arch_reader.go │ │ └── upload_system_symbols.go │ ├── python │ ├── filter_syms.py │ └── tests │ │ └── filter_syms_unittest.py │ ├── solaris │ └── dump_syms │ │ ├── Makefile │ │ ├── dump_syms.cc │ │ ├── run_regtest.sh │ │ └── testdata │ │ ├── dump_syms_regtest.cc │ │ ├── dump_syms_regtest.stabs │ │ └── dump_syms_regtest.sym │ ├── tools.gyp │ └── windows │ ├── converter │ ├── ms_symbol_server_converter.cc │ ├── ms_symbol_server_converter.gyp │ └── ms_symbol_server_converter.h │ ├── dump_syms │ ├── dump_syms.cc │ ├── dump_syms.gyp │ ├── dump_syms_unittest.cc │ ├── run_regtest.sh │ └── testdata │ │ ├── dump_syms_regtest.cc │ │ ├── dump_syms_regtest.pdb │ │ ├── dump_syms_regtest.sym │ │ ├── dump_syms_regtest64.pdb │ │ ├── dump_syms_regtest64.sym │ │ ├── omap_reorder_bbs.pdb │ │ ├── omap_reorder_bbs.sym │ │ ├── omap_reorder_funcs.pdb │ │ ├── omap_reorder_funcs.sym │ │ ├── omap_stretched.pdb │ │ ├── omap_stretched.sym │ │ ├── omap_stretched_filled.pdb │ │ └── omap_stretched_filled.sym │ ├── refresh_binaries.bat │ └── symupload │ ├── symupload.cc │ └── symupload.gyp └── tools ├── core2md ├── dump_syms ├── dump_syms.exe ├── dump_syms_osx └── minidump-2-core /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/README.md -------------------------------------------------------------------------------- /breakpad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/breakpad.pro -------------------------------------------------------------------------------- /include/client/linux/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/crash_generation/client_info.h -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/mapping_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/mapping_info.h -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/raw_context_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/raw_context_cpu.h -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/thread_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/thread_info.cc -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/thread_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/thread_info.h -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/ucontext_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/ucontext_reader.cc -------------------------------------------------------------------------------- /include/client/linux/dump_writer_common/ucontext_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/dump_writer_common/ucontext_reader.h -------------------------------------------------------------------------------- /include/client/linux/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/handler/exception_handler.h -------------------------------------------------------------------------------- /include/client/linux/handler/minidump_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/handler/minidump_descriptor.h -------------------------------------------------------------------------------- /include/client/linux/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/log/log.h -------------------------------------------------------------------------------- /include/client/linux/microdump_writer/microdump_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/microdump_writer/microdump_writer.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/cpu_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/cpu_set.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/directory_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/directory_reader.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/line_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/line_reader.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/linux_core_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/linux_core_dumper.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/linux_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/linux_dumper.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/linux_ptrace_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/linux_ptrace_dumper.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/minidump_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/minidump_writer.h -------------------------------------------------------------------------------- /include/client/linux/minidump_writer/proc_cpuinfo_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/linux/minidump_writer/proc_cpuinfo_reader.h -------------------------------------------------------------------------------- /include/client/mac/crash_generation/ConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/crash_generation/ConfigFile.h -------------------------------------------------------------------------------- /include/client/mac/crash_generation/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/crash_generation/Inspector.h -------------------------------------------------------------------------------- /include/client/mac/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/crash_generation/client_info.h -------------------------------------------------------------------------------- /include/client/mac/handler/breakpad_nlist_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/breakpad_nlist_64.h -------------------------------------------------------------------------------- /include/client/mac/handler/dynamic_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/dynamic_images.h -------------------------------------------------------------------------------- /include/client/mac/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/exception_handler.h -------------------------------------------------------------------------------- /include/client/mac/handler/mach_vm_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/mach_vm_compat.h -------------------------------------------------------------------------------- /include/client/mac/handler/minidump_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/minidump_generator.h -------------------------------------------------------------------------------- /include/client/mac/handler/protected_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/protected_memory_allocator.h -------------------------------------------------------------------------------- /include/client/mac/handler/ucontext_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/mac/handler/ucontext_compat.h -------------------------------------------------------------------------------- /include/client/windows/common/auto_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/windows/common/auto_critical_section.h -------------------------------------------------------------------------------- /include/client/windows/common/ipc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/windows/common/ipc_protocol.h -------------------------------------------------------------------------------- /include/client/windows/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/windows/crash_generation/client_info.h -------------------------------------------------------------------------------- /include/client/windows/crash_generation/minidump_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/windows/crash_generation/minidump_generator.h -------------------------------------------------------------------------------- /include/client/windows/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/client/windows/handler/exception_handler.h -------------------------------------------------------------------------------- /include/common/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/basictypes.h -------------------------------------------------------------------------------- /include/common/breakpad_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/breakpad_types.h -------------------------------------------------------------------------------- /include/common/byte_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/byte_cursor.h -------------------------------------------------------------------------------- /include/common/convert_UTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/convert_UTF.c -------------------------------------------------------------------------------- /include/common/convert_UTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/convert_UTF.h -------------------------------------------------------------------------------- /include/common/dwarf/bytereader-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/bytereader-inl.h -------------------------------------------------------------------------------- /include/common/dwarf/bytereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/bytereader.h -------------------------------------------------------------------------------- /include/common/dwarf/cfi_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/cfi_assembler.h -------------------------------------------------------------------------------- /include/common/dwarf/dwarf2diehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/dwarf2diehandler.h -------------------------------------------------------------------------------- /include/common/dwarf/dwarf2enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/dwarf2enums.h -------------------------------------------------------------------------------- /include/common/dwarf/dwarf2reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/dwarf2reader.h -------------------------------------------------------------------------------- /include/common/dwarf/dwarf2reader_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/dwarf2reader_test_common.h -------------------------------------------------------------------------------- /include/common/dwarf/functioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/functioninfo.h -------------------------------------------------------------------------------- /include/common/dwarf/line_state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/line_state_machine.h -------------------------------------------------------------------------------- /include/common/dwarf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf/types.h -------------------------------------------------------------------------------- /include/common/dwarf_cfi_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf_cfi_to_module.h -------------------------------------------------------------------------------- /include/common/dwarf_cu_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf_cu_to_module.h -------------------------------------------------------------------------------- /include/common/dwarf_line_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/dwarf_line_to_module.h -------------------------------------------------------------------------------- /include/common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/language.h -------------------------------------------------------------------------------- /include/common/linux/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/crc32.h -------------------------------------------------------------------------------- /include/common/linux/dump_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/dump_symbols.h -------------------------------------------------------------------------------- /include/common/linux/eintr_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/eintr_wrapper.h -------------------------------------------------------------------------------- /include/common/linux/elf_core_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/elf_core_dump.h -------------------------------------------------------------------------------- /include/common/linux/elf_gnu_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/elf_gnu_compat.h -------------------------------------------------------------------------------- /include/common/linux/elf_symbols_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/elf_symbols_to_module.h -------------------------------------------------------------------------------- /include/common/linux/elfutils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/elfutils-inl.h -------------------------------------------------------------------------------- /include/common/linux/elfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/elfutils.h -------------------------------------------------------------------------------- /include/common/linux/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/file_id.h -------------------------------------------------------------------------------- /include/common/linux/google_crashdump_uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/google_crashdump_uploader.h -------------------------------------------------------------------------------- /include/common/linux/guid_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/guid_creator.h -------------------------------------------------------------------------------- /include/common/linux/http_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/http_upload.h -------------------------------------------------------------------------------- /include/common/linux/ignore_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/ignore_ret.h -------------------------------------------------------------------------------- /include/common/linux/libcurl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/libcurl_wrapper.h -------------------------------------------------------------------------------- /include/common/linux/linux_libc_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/linux_libc_support.h -------------------------------------------------------------------------------- /include/common/linux/memory_mapped_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/memory_mapped_file.h -------------------------------------------------------------------------------- /include/common/linux/safe_readlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/safe_readlink.h -------------------------------------------------------------------------------- /include/common/linux/synth_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/linux/synth_elf.h -------------------------------------------------------------------------------- /include/common/mac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/GTMDefines.h -------------------------------------------------------------------------------- /include/common/mac/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/GTMLogger.h -------------------------------------------------------------------------------- /include/common/mac/HTTPMultipartUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/HTTPMultipartUpload.h -------------------------------------------------------------------------------- /include/common/mac/MachIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/MachIPC.h -------------------------------------------------------------------------------- /include/common/mac/arch_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/arch_utilities.h -------------------------------------------------------------------------------- /include/common/mac/bootstrap_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/bootstrap_compat.h -------------------------------------------------------------------------------- /include/common/mac/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/byteswap.h -------------------------------------------------------------------------------- /include/common/mac/dump_syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/dump_syms.h -------------------------------------------------------------------------------- /include/common/mac/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/file_id.h -------------------------------------------------------------------------------- /include/common/mac/launch_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/launch_reporter.h -------------------------------------------------------------------------------- /include/common/mac/macho_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/macho_id.h -------------------------------------------------------------------------------- /include/common/mac/macho_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/macho_reader.h -------------------------------------------------------------------------------- /include/common/mac/macho_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/macho_utilities.h -------------------------------------------------------------------------------- /include/common/mac/macho_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/macho_walker.h -------------------------------------------------------------------------------- /include/common/mac/scoped_task_suspend-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/scoped_task_suspend-inl.h -------------------------------------------------------------------------------- /include/common/mac/string_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/string_utilities.h -------------------------------------------------------------------------------- /include/common/mac/super_fat_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/mac/super_fat_arch.h -------------------------------------------------------------------------------- /include/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/md5.h -------------------------------------------------------------------------------- /include/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/memory.h -------------------------------------------------------------------------------- /include/common/memory_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/memory_range.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_amd64.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_arm.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_arm64.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_mips.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_ppc.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_ppc64.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_sparc.h -------------------------------------------------------------------------------- /include/common/minidump_cpu_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_cpu_x86.h -------------------------------------------------------------------------------- /include/common/minidump_exception_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_exception_linux.h -------------------------------------------------------------------------------- /include/common/minidump_exception_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_exception_mac.h -------------------------------------------------------------------------------- /include/common/minidump_exception_ps3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_exception_ps3.h -------------------------------------------------------------------------------- /include/common/minidump_exception_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_exception_solaris.h -------------------------------------------------------------------------------- /include/common/minidump_exception_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_exception_win32.h -------------------------------------------------------------------------------- /include/common/minidump_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_format.h -------------------------------------------------------------------------------- /include/common/minidump_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_size.h -------------------------------------------------------------------------------- /include/common/minidump_type_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/minidump_type_helper.h -------------------------------------------------------------------------------- /include/common/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/module.h -------------------------------------------------------------------------------- /include/common/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/scoped_ptr.h -------------------------------------------------------------------------------- /include/common/simple_string_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/simple_string_dictionary.h -------------------------------------------------------------------------------- /include/common/solaris/dump_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/solaris/dump_symbols.h -------------------------------------------------------------------------------- /include/common/solaris/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/solaris/file_id.h -------------------------------------------------------------------------------- /include/common/solaris/guid_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/solaris/guid_creator.h -------------------------------------------------------------------------------- /include/common/solaris/message_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/solaris/message_output.h -------------------------------------------------------------------------------- /include/common/stabs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/stabs_reader.h -------------------------------------------------------------------------------- /include/common/stabs_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/stabs_to_module.h -------------------------------------------------------------------------------- /include/common/string_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/string_conversion.h -------------------------------------------------------------------------------- /include/common/symbol_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/symbol_data.h -------------------------------------------------------------------------------- /include/common/test_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/test_assembler.h -------------------------------------------------------------------------------- /include/common/unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/unordered.h -------------------------------------------------------------------------------- /include/common/using_std_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/using_std_string.h -------------------------------------------------------------------------------- /include/common/windows/dia_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/dia_util.h -------------------------------------------------------------------------------- /include/common/windows/guid_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/guid_string.h -------------------------------------------------------------------------------- /include/common/windows/http_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/http_upload.h -------------------------------------------------------------------------------- /include/common/windows/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/omap.h -------------------------------------------------------------------------------- /include/common/windows/omap_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/omap_internal.h -------------------------------------------------------------------------------- /include/common/windows/pdb_source_line_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/pdb_source_line_writer.h -------------------------------------------------------------------------------- /include/common/windows/string_utils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/common/windows/string_utils-inl.h -------------------------------------------------------------------------------- /include/third_party/lss/linux_syscall_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/include/third_party/lss/linux_syscall_support.h -------------------------------------------------------------------------------- /lib/linux-x64/libgoogle-breakpad.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/linux-x64/libgoogle-breakpad.a -------------------------------------------------------------------------------- /lib/linux-x86/libgoogle-breakpad.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/linux-x86/libgoogle-breakpad.a -------------------------------------------------------------------------------- /lib/mac/libgoogle-breakpad.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/mac/libgoogle-breakpad.a -------------------------------------------------------------------------------- /lib/windows-x64/google-breakpad-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/windows-x64/google-breakpad-debug.lib -------------------------------------------------------------------------------- /lib/windows-x64/google-breakpad-release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/windows-x64/google-breakpad-release.lib -------------------------------------------------------------------------------- /lib/windows-x86/google-breakpad-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/windows-x86/google-breakpad-debug.lib -------------------------------------------------------------------------------- /lib/windows-x86/google-breakpad-release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/lib/windows-x86/google-breakpad-release.lib -------------------------------------------------------------------------------- /sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/.gitignore -------------------------------------------------------------------------------- /sources/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /sources/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/DEPS -------------------------------------------------------------------------------- /sources/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/INSTALL -------------------------------------------------------------------------------- /sources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/LICENSE -------------------------------------------------------------------------------- /sources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/Makefile.am -------------------------------------------------------------------------------- /sources/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/Makefile.in -------------------------------------------------------------------------------- /sources/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/README -------------------------------------------------------------------------------- /sources/README.ANDROID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/README.ANDROID -------------------------------------------------------------------------------- /sources/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/aclocal.m4 -------------------------------------------------------------------------------- /sources/android/common-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/common-functions.sh -------------------------------------------------------------------------------- /sources/android/google_breakpad/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/google_breakpad/Android.mk -------------------------------------------------------------------------------- /sources/android/run-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/run-checks.sh -------------------------------------------------------------------------------- /sources/android/sample_app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/sample_app/README -------------------------------------------------------------------------------- /sources/android/sample_app/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/sample_app/jni/Android.mk -------------------------------------------------------------------------------- /sources/android/sample_app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/sample_app/jni/Application.mk -------------------------------------------------------------------------------- /sources/android/sample_app/jni/test_breakpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/sample_app/jni/test_breakpad.cpp -------------------------------------------------------------------------------- /sources/android/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/test-driver -------------------------------------------------------------------------------- /sources/android/test-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/android/test-shell.sh -------------------------------------------------------------------------------- /sources/autotools/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/compile -------------------------------------------------------------------------------- /sources/autotools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/config.guess -------------------------------------------------------------------------------- /sources/autotools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/config.sub -------------------------------------------------------------------------------- /sources/autotools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/depcomp -------------------------------------------------------------------------------- /sources/autotools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/install-sh -------------------------------------------------------------------------------- /sources/autotools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/ltmain.sh -------------------------------------------------------------------------------- /sources/autotools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/missing -------------------------------------------------------------------------------- /sources/autotools/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/autotools/test-driver -------------------------------------------------------------------------------- /sources/breakpad-client.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/breakpad-client.pc.in -------------------------------------------------------------------------------- /sources/breakpad.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/breakpad.pc.in -------------------------------------------------------------------------------- /sources/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/codereview.settings -------------------------------------------------------------------------------- /sources/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/configure -------------------------------------------------------------------------------- /sources/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/configure.ac -------------------------------------------------------------------------------- /sources/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /sources/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/libtool.m4 -------------------------------------------------------------------------------- /sources/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/ltoptions.m4 -------------------------------------------------------------------------------- /sources/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/ltsugar.m4 -------------------------------------------------------------------------------- /sources/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/ltversion.m4 -------------------------------------------------------------------------------- /sources/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /sources/src/breakpad_googletest_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/breakpad_googletest_includes.h -------------------------------------------------------------------------------- /sources/src/build/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/build/all.gyp -------------------------------------------------------------------------------- /sources/src/build/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/build/common.gypi -------------------------------------------------------------------------------- /sources/src/build/filename_rules.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/build/filename_rules.gypi -------------------------------------------------------------------------------- /sources/src/build/gyp_breakpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/build/gyp_breakpad -------------------------------------------------------------------------------- /sources/src/build/testing.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/build/testing.gypi -------------------------------------------------------------------------------- /sources/src/client/apple/Framework/BreakpadDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/apple/Framework/BreakpadDefines.h -------------------------------------------------------------------------------- /sources/src/client/ios/Breakpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/ios/Breakpad.h -------------------------------------------------------------------------------- /sources/src/client/ios/Breakpad.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/ios/Breakpad.mm -------------------------------------------------------------------------------- /sources/src/client/ios/Breakpad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/ios/Breakpad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sources/src/client/ios/BreakpadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/ios/BreakpadController.h -------------------------------------------------------------------------------- /sources/src/client/ios/BreakpadController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/ios/BreakpadController.mm -------------------------------------------------------------------------------- /sources/src/client/linux/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/crash_generation/client_info.h -------------------------------------------------------------------------------- /sources/src/client/linux/data/linux-gate-amd.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/data/linux-gate-amd.sym -------------------------------------------------------------------------------- /sources/src/client/linux/data/linux-gate-intel.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/data/linux-gate-intel.sym -------------------------------------------------------------------------------- /sources/src/client/linux/dump_writer_common/mapping_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/dump_writer_common/mapping_info.h -------------------------------------------------------------------------------- /sources/src/client/linux/dump_writer_common/thread_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/dump_writer_common/thread_info.cc -------------------------------------------------------------------------------- /sources/src/client/linux/dump_writer_common/thread_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/dump_writer_common/thread_info.h -------------------------------------------------------------------------------- /sources/src/client/linux/handler/exception_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/handler/exception_handler.cc -------------------------------------------------------------------------------- /sources/src/client/linux/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/handler/exception_handler.h -------------------------------------------------------------------------------- /sources/src/client/linux/handler/minidump_descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/handler/minidump_descriptor.cc -------------------------------------------------------------------------------- /sources/src/client/linux/handler/minidump_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/handler/minidump_descriptor.h -------------------------------------------------------------------------------- /sources/src/client/linux/log/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/log/log.cc -------------------------------------------------------------------------------- /sources/src/client/linux/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/log/log.h -------------------------------------------------------------------------------- /sources/src/client/linux/microdump_writer/microdump_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/microdump_writer/microdump_writer.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/cpu_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/cpu_set.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/cpu_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/cpu_set_unittest.cc -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/directory_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/directory_reader.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/line_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/line_reader.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/linux_core_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/linux_core_dumper.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/linux_dumper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/linux_dumper.cc -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/linux_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/linux_dumper.h -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/minidump_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/minidump_writer.cc -------------------------------------------------------------------------------- /sources/src/client/linux/minidump_writer/minidump_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/linux/minidump_writer/minidump_writer.h -------------------------------------------------------------------------------- /sources/src/client/mac/Breakpad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Breakpad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sources/src/client/mac/Framework/Breakpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Framework/Breakpad.h -------------------------------------------------------------------------------- /sources/src/client/mac/Framework/Breakpad.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Framework/Breakpad.mm -------------------------------------------------------------------------------- /sources/src/client/mac/Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Framework/Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/Framework/OnDemandServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Framework/OnDemandServer.h -------------------------------------------------------------------------------- /sources/src/client/mac/Framework/OnDemandServer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/Framework/OnDemandServer.mm -------------------------------------------------------------------------------- /sources/src/client/mac/UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/UnitTests-Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/ConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/ConfigFile.h -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/ConfigFile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/ConfigFile.mm -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/Inspector.h -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/Inspector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/Inspector.mm -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/InspectorMain.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/InspectorMain.mm -------------------------------------------------------------------------------- /sources/src/client/mac/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/crash_generation/client_info.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/breakpad_nlist_64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/breakpad_nlist_64.cc -------------------------------------------------------------------------------- /sources/src/client/mac/handler/breakpad_nlist_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/breakpad_nlist_64.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/dynamic_images.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/dynamic_images.cc -------------------------------------------------------------------------------- /sources/src/client/mac/handler/dynamic_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/dynamic_images.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/exception_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/exception_handler.cc -------------------------------------------------------------------------------- /sources/src/client/mac/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/exception_handler.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/mach_vm_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/mach_vm_compat.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/minidump_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/minidump_generator.cc -------------------------------------------------------------------------------- /sources/src/client/mac/handler/minidump_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/minidump_generator.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/minidump_tests32-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/minidump_tests32-Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/handler/minidump_tests64-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/minidump_tests64-Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/handler/obj-cTestCases-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/obj-cTestCases-Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/handler/protected_memory_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/protected_memory_allocator.cc -------------------------------------------------------------------------------- /sources/src/client/mac/handler/protected_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/protected_memory_allocator.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/testcases/dwarftests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/testcases/dwarftests.h -------------------------------------------------------------------------------- /sources/src/client/mac/handler/testcases/dwarftests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/testcases/dwarftests.mm -------------------------------------------------------------------------------- /sources/src/client/mac/handler/ucontext_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/handler/ucontext_compat.h -------------------------------------------------------------------------------- /sources/src/client/mac/sender/Breakpad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/Breakpad.xib -------------------------------------------------------------------------------- /sources/src/client/mac/sender/ReporterIcon.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/ReporterIcon.graffle -------------------------------------------------------------------------------- /sources/src/client/mac/sender/crash_report_sender-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/crash_report_sender-Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/sender/crash_report_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/crash_report_sender.h -------------------------------------------------------------------------------- /sources/src/client/mac/sender/crash_report_sender.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/crash_report_sender.icns -------------------------------------------------------------------------------- /sources/src/client/mac/sender/crash_report_sender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/crash_report_sender.m -------------------------------------------------------------------------------- /sources/src/client/mac/sender/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/goArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/goArrow.png -------------------------------------------------------------------------------- /sources/src/client/mac/sender/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/no.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/no.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/sl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /sources/src/client/mac/sender/uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/uploader.h -------------------------------------------------------------------------------- /sources/src/client/mac/sender/uploader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/sender/uploader.mm -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/Controller.h -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/Controller.m -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/Info.plist -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/TestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/TestClass.h -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/TestClass.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/TestClass.mm -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/bomb.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/bomb.icns -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/crashInMain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/crashInMain -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/crashduringload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/crashduringload -------------------------------------------------------------------------------- /sources/src/client/mac/testapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/testapp/main.m -------------------------------------------------------------------------------- /sources/src/client/mac/tests/BreakpadFramework_Test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/BreakpadFramework_Test.mm -------------------------------------------------------------------------------- /sources/src/client/mac/tests/crash_generation_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/crash_generation_server_test.cc -------------------------------------------------------------------------------- /sources/src/client/mac/tests/exception_handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/exception_handler_test.cc -------------------------------------------------------------------------------- /sources/src/client/mac/tests/minidump_generator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/minidump_generator_test.cc -------------------------------------------------------------------------------- /sources/src/client/mac/tests/spawn_child_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/spawn_child_process.h -------------------------------------------------------------------------------- /sources/src/client/mac/tests/testlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/mac/tests/testlogging.h -------------------------------------------------------------------------------- /sources/src/client/minidump_file_writer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/minidump_file_writer-inl.h -------------------------------------------------------------------------------- /sources/src/client/minidump_file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/minidump_file_writer.cc -------------------------------------------------------------------------------- /sources/src/client/minidump_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/minidump_file_writer.h -------------------------------------------------------------------------------- /sources/src/client/minidump_file_writer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/minidump_file_writer_unittest.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/Makefile -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/exception_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/exception_handler.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/exception_handler.h -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/exception_handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/exception_handler_test.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/minidump_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/minidump_generator.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/minidump_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/minidump_generator.h -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/minidump_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/minidump_test.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/solaris_lwp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/solaris_lwp.cc -------------------------------------------------------------------------------- /sources/src/client/solaris/handler/solaris_lwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/solaris/handler/solaris_lwp.h -------------------------------------------------------------------------------- /sources/src/client/windows/breakpad_client.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/breakpad_client.gyp -------------------------------------------------------------------------------- /sources/src/client/windows/common/auto_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/common/auto_critical_section.h -------------------------------------------------------------------------------- /sources/src/client/windows/common/ipc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/common/ipc_protocol.h -------------------------------------------------------------------------------- /sources/src/client/windows/crash_generation/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/crash_generation/ReadMe.txt -------------------------------------------------------------------------------- /sources/src/client/windows/crash_generation/client_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/crash_generation/client_info.cc -------------------------------------------------------------------------------- /sources/src/client/windows/crash_generation/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/crash_generation/client_info.h -------------------------------------------------------------------------------- /sources/src/client/windows/handler/exception_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/handler/exception_handler.cc -------------------------------------------------------------------------------- /sources/src/client/windows/handler/exception_handler.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/handler/exception_handler.gyp -------------------------------------------------------------------------------- /sources/src/client/windows/handler/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/handler/exception_handler.h -------------------------------------------------------------------------------- /sources/src/client/windows/sender/crash_report_sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/sender/crash_report_sender.cc -------------------------------------------------------------------------------- /sources/src/client/windows/sender/crash_report_sender.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/sender/crash_report_sender.gyp -------------------------------------------------------------------------------- /sources/src/client/windows/sender/crash_report_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/sender/crash_report_sender.h -------------------------------------------------------------------------------- /sources/src/client/windows/unittests/client_tests.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/unittests/client_tests.gyp -------------------------------------------------------------------------------- /sources/src/client/windows/unittests/dump_analysis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/unittests/dump_analysis.cc -------------------------------------------------------------------------------- /sources/src/client/windows/unittests/dump_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/unittests/dump_analysis.h -------------------------------------------------------------------------------- /sources/src/client/windows/unittests/minidump_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/unittests/minidump_test.cc -------------------------------------------------------------------------------- /sources/src/client/windows/unittests/testing.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/client/windows/unittests/testing.gyp -------------------------------------------------------------------------------- /sources/src/common/android/breakpad_getcontext.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/breakpad_getcontext.S -------------------------------------------------------------------------------- /sources/src/common/android/breakpad_getcontext_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/breakpad_getcontext_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/android/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/elf.h -------------------------------------------------------------------------------- /sources/src/common/android/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/link.h -------------------------------------------------------------------------------- /sources/src/common/android/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/sgidefs.h -------------------------------------------------------------------------------- /sources/src/common/android/include/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/stab.h -------------------------------------------------------------------------------- /sources/src/common/android/include/sys/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/sys/procfs.h -------------------------------------------------------------------------------- /sources/src/common/android/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/sys/signal.h -------------------------------------------------------------------------------- /sources/src/common/android/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/sys/user.h -------------------------------------------------------------------------------- /sources/src/common/android/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/include/ucontext.h -------------------------------------------------------------------------------- /sources/src/common/android/testing/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/testing/include/wchar.h -------------------------------------------------------------------------------- /sources/src/common/android/testing/mkdtemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/testing/mkdtemp.h -------------------------------------------------------------------------------- /sources/src/common/android/testing/pthread_fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/testing/pthread_fixes.h -------------------------------------------------------------------------------- /sources/src/common/android/ucontext_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/android/ucontext_constants.h -------------------------------------------------------------------------------- /sources/src/common/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/basictypes.h -------------------------------------------------------------------------------- /sources/src/common/byte_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/byte_cursor.h -------------------------------------------------------------------------------- /sources/src/common/byte_cursor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/byte_cursor_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/common.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/common.gyp -------------------------------------------------------------------------------- /sources/src/common/convert_UTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/convert_UTF.c -------------------------------------------------------------------------------- /sources/src/common/convert_UTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/convert_UTF.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/bytereader-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/bytereader-inl.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/bytereader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/bytereader.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/bytereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/bytereader.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/bytereader_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/bytereader_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/cfi_assembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/cfi_assembler.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/cfi_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/cfi_assembler.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2diehandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2diehandler.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2diehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2diehandler.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2diehandler_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2diehandler_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2enums.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2reader.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2reader.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2reader_cfi_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2reader_cfi_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2reader_die_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2reader_die_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/dwarf2reader_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/dwarf2reader_test_common.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/functioninfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/functioninfo.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf/functioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/functioninfo.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/line_state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/line_state_machine.h -------------------------------------------------------------------------------- /sources/src/common/dwarf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf/types.h -------------------------------------------------------------------------------- /sources/src/common/dwarf_cfi_to_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cfi_to_module.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf_cfi_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cfi_to_module.h -------------------------------------------------------------------------------- /sources/src/common/dwarf_cfi_to_module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cfi_to_module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf_cu_to_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cu_to_module.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf_cu_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cu_to_module.h -------------------------------------------------------------------------------- /sources/src/common/dwarf_cu_to_module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_cu_to_module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf_line_to_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_line_to_module.cc -------------------------------------------------------------------------------- /sources/src/common/dwarf_line_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_line_to_module.h -------------------------------------------------------------------------------- /sources/src/common/dwarf_line_to_module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/dwarf_line_to_module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/language.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/language.cc -------------------------------------------------------------------------------- /sources/src/common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/language.h -------------------------------------------------------------------------------- /sources/src/common/linux/crc32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/crc32.cc -------------------------------------------------------------------------------- /sources/src/common/linux/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/crc32.h -------------------------------------------------------------------------------- /sources/src/common/linux/dump_symbols.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/dump_symbols.cc -------------------------------------------------------------------------------- /sources/src/common/linux/dump_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/dump_symbols.h -------------------------------------------------------------------------------- /sources/src/common/linux/dump_symbols_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/dump_symbols_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/eintr_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/eintr_wrapper.h -------------------------------------------------------------------------------- /sources/src/common/linux/elf_core_dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_core_dump.cc -------------------------------------------------------------------------------- /sources/src/common/linux/elf_core_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_core_dump.h -------------------------------------------------------------------------------- /sources/src/common/linux/elf_core_dump_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_core_dump_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/elf_gnu_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_gnu_compat.h -------------------------------------------------------------------------------- /sources/src/common/linux/elf_symbols_to_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_symbols_to_module.cc -------------------------------------------------------------------------------- /sources/src/common/linux/elf_symbols_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_symbols_to_module.h -------------------------------------------------------------------------------- /sources/src/common/linux/elf_symbols_to_module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elf_symbols_to_module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/elfutils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elfutils-inl.h -------------------------------------------------------------------------------- /sources/src/common/linux/elfutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elfutils.cc -------------------------------------------------------------------------------- /sources/src/common/linux/elfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/elfutils.h -------------------------------------------------------------------------------- /sources/src/common/linux/file_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/file_id.cc -------------------------------------------------------------------------------- /sources/src/common/linux/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/file_id.h -------------------------------------------------------------------------------- /sources/src/common/linux/file_id_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/file_id_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/google_crashdump_uploader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/google_crashdump_uploader.cc -------------------------------------------------------------------------------- /sources/src/common/linux/google_crashdump_uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/google_crashdump_uploader.h -------------------------------------------------------------------------------- /sources/src/common/linux/google_crashdump_uploader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/google_crashdump_uploader_test.cc -------------------------------------------------------------------------------- /sources/src/common/linux/guid_creator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/guid_creator.cc -------------------------------------------------------------------------------- /sources/src/common/linux/guid_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/guid_creator.h -------------------------------------------------------------------------------- /sources/src/common/linux/http_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/http_upload.cc -------------------------------------------------------------------------------- /sources/src/common/linux/http_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/http_upload.h -------------------------------------------------------------------------------- /sources/src/common/linux/ignore_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/ignore_ret.h -------------------------------------------------------------------------------- /sources/src/common/linux/libcurl_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/libcurl_wrapper.cc -------------------------------------------------------------------------------- /sources/src/common/linux/libcurl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/libcurl_wrapper.h -------------------------------------------------------------------------------- /sources/src/common/linux/linux_libc_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/linux_libc_support.cc -------------------------------------------------------------------------------- /sources/src/common/linux/linux_libc_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/linux_libc_support.h -------------------------------------------------------------------------------- /sources/src/common/linux/linux_libc_support_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/linux_libc_support_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/memory_mapped_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/memory_mapped_file.cc -------------------------------------------------------------------------------- /sources/src/common/linux/memory_mapped_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/memory_mapped_file.h -------------------------------------------------------------------------------- /sources/src/common/linux/memory_mapped_file_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/memory_mapped_file_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/safe_readlink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/safe_readlink.cc -------------------------------------------------------------------------------- /sources/src/common/linux/safe_readlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/safe_readlink.h -------------------------------------------------------------------------------- /sources/src/common/linux/safe_readlink_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/safe_readlink_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/synth_elf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/synth_elf.cc -------------------------------------------------------------------------------- /sources/src/common/linux/synth_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/synth_elf.h -------------------------------------------------------------------------------- /sources/src/common/linux/synth_elf_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/synth_elf_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/linux/tests/auto_testfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/tests/auto_testfile.h -------------------------------------------------------------------------------- /sources/src/common/linux/tests/crash_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/tests/crash_generator.cc -------------------------------------------------------------------------------- /sources/src/common/linux/tests/crash_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/linux/tests/crash_generator.h -------------------------------------------------------------------------------- /sources/src/common/mac/Breakpad.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/Breakpad.xcconfig -------------------------------------------------------------------------------- /sources/src/common/mac/BreakpadDebug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/BreakpadDebug.xcconfig -------------------------------------------------------------------------------- /sources/src/common/mac/BreakpadRelease.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/BreakpadRelease.xcconfig -------------------------------------------------------------------------------- /sources/src/common/mac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/GTMDefines.h -------------------------------------------------------------------------------- /sources/src/common/mac/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/GTMLogger.h -------------------------------------------------------------------------------- /sources/src/common/mac/GTMLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/GTMLogger.m -------------------------------------------------------------------------------- /sources/src/common/mac/HTTPMultipartUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/HTTPMultipartUpload.h -------------------------------------------------------------------------------- /sources/src/common/mac/HTTPMultipartUpload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/HTTPMultipartUpload.m -------------------------------------------------------------------------------- /sources/src/common/mac/MachIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/MachIPC.h -------------------------------------------------------------------------------- /sources/src/common/mac/MachIPC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/MachIPC.mm -------------------------------------------------------------------------------- /sources/src/common/mac/arch_utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/arch_utilities.cc -------------------------------------------------------------------------------- /sources/src/common/mac/arch_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/arch_utilities.h -------------------------------------------------------------------------------- /sources/src/common/mac/bootstrap_compat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/bootstrap_compat.cc -------------------------------------------------------------------------------- /sources/src/common/mac/bootstrap_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/bootstrap_compat.h -------------------------------------------------------------------------------- /sources/src/common/mac/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/byteswap.h -------------------------------------------------------------------------------- /sources/src/common/mac/dump_syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/dump_syms.h -------------------------------------------------------------------------------- /sources/src/common/mac/dump_syms.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/dump_syms.mm -------------------------------------------------------------------------------- /sources/src/common/mac/file_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/file_id.cc -------------------------------------------------------------------------------- /sources/src/common/mac/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/file_id.h -------------------------------------------------------------------------------- /sources/src/common/mac/launch_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/launch_reporter.cc -------------------------------------------------------------------------------- /sources/src/common/mac/launch_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/launch_reporter.h -------------------------------------------------------------------------------- /sources/src/common/mac/macho_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_id.cc -------------------------------------------------------------------------------- /sources/src/common/mac/macho_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_id.h -------------------------------------------------------------------------------- /sources/src/common/mac/macho_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_reader.cc -------------------------------------------------------------------------------- /sources/src/common/mac/macho_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_reader.h -------------------------------------------------------------------------------- /sources/src/common/mac/macho_reader_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_reader_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/mac/macho_utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_utilities.cc -------------------------------------------------------------------------------- /sources/src/common/mac/macho_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_utilities.h -------------------------------------------------------------------------------- /sources/src/common/mac/macho_walker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_walker.cc -------------------------------------------------------------------------------- /sources/src/common/mac/macho_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/macho_walker.h -------------------------------------------------------------------------------- /sources/src/common/mac/scoped_task_suspend-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/scoped_task_suspend-inl.h -------------------------------------------------------------------------------- /sources/src/common/mac/string_utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/string_utilities.cc -------------------------------------------------------------------------------- /sources/src/common/mac/string_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/string_utilities.h -------------------------------------------------------------------------------- /sources/src/common/mac/super_fat_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/super_fat_arch.h -------------------------------------------------------------------------------- /sources/src/common/mac/testing/GTMSenTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/testing/GTMSenTestCase.h -------------------------------------------------------------------------------- /sources/src/common/mac/testing/GTMSenTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/mac/testing/GTMSenTestCase.m -------------------------------------------------------------------------------- /sources/src/common/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/md5.cc -------------------------------------------------------------------------------- /sources/src/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/md5.h -------------------------------------------------------------------------------- /sources/src/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/memory.h -------------------------------------------------------------------------------- /sources/src/common/memory_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/memory_range.h -------------------------------------------------------------------------------- /sources/src/common/memory_range_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/memory_range_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/memory_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/memory_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/minidump_type_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/minidump_type_helper.h -------------------------------------------------------------------------------- /sources/src/common/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/module.cc -------------------------------------------------------------------------------- /sources/src/common/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/module.h -------------------------------------------------------------------------------- /sources/src/common/module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/scoped_ptr.h -------------------------------------------------------------------------------- /sources/src/common/simple_string_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/simple_string_dictionary.cc -------------------------------------------------------------------------------- /sources/src/common/simple_string_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/simple_string_dictionary.h -------------------------------------------------------------------------------- /sources/src/common/simple_string_dictionary_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/simple_string_dictionary_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/solaris/dump_symbols.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/dump_symbols.cc -------------------------------------------------------------------------------- /sources/src/common/solaris/dump_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/dump_symbols.h -------------------------------------------------------------------------------- /sources/src/common/solaris/file_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/file_id.cc -------------------------------------------------------------------------------- /sources/src/common/solaris/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/file_id.h -------------------------------------------------------------------------------- /sources/src/common/solaris/guid_creator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/guid_creator.cc -------------------------------------------------------------------------------- /sources/src/common/solaris/guid_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/guid_creator.h -------------------------------------------------------------------------------- /sources/src/common/solaris/message_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/solaris/message_output.h -------------------------------------------------------------------------------- /sources/src/common/stabs_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_reader.cc -------------------------------------------------------------------------------- /sources/src/common/stabs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_reader.h -------------------------------------------------------------------------------- /sources/src/common/stabs_reader_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_reader_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/stabs_to_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_to_module.cc -------------------------------------------------------------------------------- /sources/src/common/stabs_to_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_to_module.h -------------------------------------------------------------------------------- /sources/src/common/stabs_to_module_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/stabs_to_module_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/string_conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/string_conversion.cc -------------------------------------------------------------------------------- /sources/src/common/string_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/string_conversion.h -------------------------------------------------------------------------------- /sources/src/common/symbol_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/symbol_data.h -------------------------------------------------------------------------------- /sources/src/common/test_assembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/test_assembler.cc -------------------------------------------------------------------------------- /sources/src/common/test_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/test_assembler.h -------------------------------------------------------------------------------- /sources/src/common/test_assembler_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/test_assembler_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/testdata/func-line-pairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/testdata/func-line-pairing.h -------------------------------------------------------------------------------- /sources/src/common/tests/auto_tempdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/tests/auto_tempdir.h -------------------------------------------------------------------------------- /sources/src/common/tests/file_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/tests/file_utils.cc -------------------------------------------------------------------------------- /sources/src/common/tests/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/tests/file_utils.h -------------------------------------------------------------------------------- /sources/src/common/unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/unordered.h -------------------------------------------------------------------------------- /sources/src/common/using_std_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/using_std_string.h -------------------------------------------------------------------------------- /sources/src/common/windows/common_windows.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/common_windows.gyp -------------------------------------------------------------------------------- /sources/src/common/windows/dia_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/dia_util.cc -------------------------------------------------------------------------------- /sources/src/common/windows/dia_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/dia_util.h -------------------------------------------------------------------------------- /sources/src/common/windows/guid_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/guid_string.cc -------------------------------------------------------------------------------- /sources/src/common/windows/guid_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/guid_string.h -------------------------------------------------------------------------------- /sources/src/common/windows/http_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/http_upload.cc -------------------------------------------------------------------------------- /sources/src/common/windows/http_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/http_upload.h -------------------------------------------------------------------------------- /sources/src/common/windows/omap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/omap.cc -------------------------------------------------------------------------------- /sources/src/common/windows/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/omap.h -------------------------------------------------------------------------------- /sources/src/common/windows/omap_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/omap_internal.h -------------------------------------------------------------------------------- /sources/src/common/windows/omap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/omap_unittest.cc -------------------------------------------------------------------------------- /sources/src/common/windows/pdb_source_line_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/pdb_source_line_writer.cc -------------------------------------------------------------------------------- /sources/src/common/windows/pdb_source_line_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/pdb_source_line_writer.h -------------------------------------------------------------------------------- /sources/src/common/windows/string_utils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/string_utils-inl.h -------------------------------------------------------------------------------- /sources/src/common/windows/string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/common/windows/string_utils.cc -------------------------------------------------------------------------------- /sources/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/config.h.in -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/breakpad_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/breakpad_types.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_amd64.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_arm.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_arm64.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_mips.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_ppc.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_ppc64.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_sparc.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_cpu_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_cpu_x86.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_exception_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_exception_mac.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_exception_ps3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_exception_ps3.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_format.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/common/minidump_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/common/minidump_size.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/call_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/call_stack.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/code_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/code_module.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/code_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/code_modules.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/dump_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/dump_context.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/dump_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/dump_object.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/exploitability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/exploitability.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/memory_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/memory_region.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/microdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/microdump.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/microdump_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/microdump_processor.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/minidump.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/minidump_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/minidump_processor.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/proc_maps_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/proc_maps_linux.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/process_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/process_result.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/process_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/process_state.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/stack_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/stack_frame.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/stack_frame_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/stack_frame_cpu.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/stackwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/stackwalker.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/symbol_supplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/symbol_supplier.h -------------------------------------------------------------------------------- /sources/src/google_breakpad/processor/system_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/google_breakpad/processor/system_info.h -------------------------------------------------------------------------------- /sources/src/processor/address_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/address_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/address_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/address_map.h -------------------------------------------------------------------------------- /sources/src/processor/address_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/address_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/basic_code_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/basic_code_module.h -------------------------------------------------------------------------------- /sources/src/processor/basic_code_modules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/basic_code_modules.cc -------------------------------------------------------------------------------- /sources/src/processor/basic_code_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/basic_code_modules.h -------------------------------------------------------------------------------- /sources/src/processor/basic_source_line_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/basic_source_line_resolver.cc -------------------------------------------------------------------------------- /sources/src/processor/basic_source_line_resolver_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/basic_source_line_resolver_types.h -------------------------------------------------------------------------------- /sources/src/processor/call_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/call_stack.cc -------------------------------------------------------------------------------- /sources/src/processor/cfi_frame_info-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/cfi_frame_info-inl.h -------------------------------------------------------------------------------- /sources/src/processor/cfi_frame_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/cfi_frame_info.cc -------------------------------------------------------------------------------- /sources/src/processor/cfi_frame_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/cfi_frame_info.h -------------------------------------------------------------------------------- /sources/src/processor/cfi_frame_info_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/cfi_frame_info_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/contained_range_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/contained_range_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/contained_range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/contained_range_map.h -------------------------------------------------------------------------------- /sources/src/processor/contained_range_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/contained_range_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/disassembler_x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/disassembler_x86.cc -------------------------------------------------------------------------------- /sources/src/processor/disassembler_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/disassembler_x86.h -------------------------------------------------------------------------------- /sources/src/processor/disassembler_x86_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/disassembler_x86_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/dump_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/dump_context.cc -------------------------------------------------------------------------------- /sources/src/processor/dump_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/dump_object.cc -------------------------------------------------------------------------------- /sources/src/processor/exploitability.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability.cc -------------------------------------------------------------------------------- /sources/src/processor/exploitability_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability_linux.cc -------------------------------------------------------------------------------- /sources/src/processor/exploitability_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability_linux.h -------------------------------------------------------------------------------- /sources/src/processor/exploitability_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/exploitability_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability_win.cc -------------------------------------------------------------------------------- /sources/src/processor/exploitability_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/exploitability_win.h -------------------------------------------------------------------------------- /sources/src/processor/fast_source_line_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/fast_source_line_resolver.cc -------------------------------------------------------------------------------- /sources/src/processor/fast_source_line_resolver_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/fast_source_line_resolver_types.h -------------------------------------------------------------------------------- /sources/src/processor/linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/linked_ptr.h -------------------------------------------------------------------------------- /sources/src/processor/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/logging.cc -------------------------------------------------------------------------------- /sources/src/processor/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/logging.h -------------------------------------------------------------------------------- /sources/src/processor/map_serializers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/map_serializers-inl.h -------------------------------------------------------------------------------- /sources/src/processor/map_serializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/map_serializers.h -------------------------------------------------------------------------------- /sources/src/processor/map_serializers_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/map_serializers_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/microdump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/microdump.cc -------------------------------------------------------------------------------- /sources/src/processor/microdump_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/microdump_processor.cc -------------------------------------------------------------------------------- /sources/src/processor/microdump_processor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/microdump_processor_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/microdump_stackwalk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/microdump_stackwalk.cc -------------------------------------------------------------------------------- /sources/src/processor/microdump_stackwalk_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/microdump_stackwalk_test -------------------------------------------------------------------------------- /sources/src/processor/microdump_stackwalk_test_vars: -------------------------------------------------------------------------------- 1 | MICRODUMP_SUPPORTED_ARCHS="arm arm64" 2 | -------------------------------------------------------------------------------- /sources/src/processor/minidump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump.cc -------------------------------------------------------------------------------- /sources/src/processor/minidump_dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_dump.cc -------------------------------------------------------------------------------- /sources/src/processor/minidump_dump_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_dump_test -------------------------------------------------------------------------------- /sources/src/processor/minidump_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_processor.cc -------------------------------------------------------------------------------- /sources/src/processor/minidump_processor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_processor_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/minidump_stackwalk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_stackwalk.cc -------------------------------------------------------------------------------- /sources/src/processor/minidump_stackwalk_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_stackwalk_test -------------------------------------------------------------------------------- /sources/src/processor/minidump_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/minidump_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/module_comparer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/module_comparer.cc -------------------------------------------------------------------------------- /sources/src/processor/module_comparer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/module_comparer.h -------------------------------------------------------------------------------- /sources/src/processor/module_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/module_factory.h -------------------------------------------------------------------------------- /sources/src/processor/module_serializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/module_serializer.cc -------------------------------------------------------------------------------- /sources/src/processor/module_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/module_serializer.h -------------------------------------------------------------------------------- /sources/src/processor/pathname_stripper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/pathname_stripper.cc -------------------------------------------------------------------------------- /sources/src/processor/pathname_stripper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/pathname_stripper.h -------------------------------------------------------------------------------- /sources/src/processor/pathname_stripper_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/pathname_stripper_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/postfix_evaluator-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/postfix_evaluator-inl.h -------------------------------------------------------------------------------- /sources/src/processor/postfix_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/postfix_evaluator.h -------------------------------------------------------------------------------- /sources/src/processor/postfix_evaluator_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/postfix_evaluator_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/proc_maps_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/proc_maps_linux.cc -------------------------------------------------------------------------------- /sources/src/processor/proc_maps_linux_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/proc_maps_linux_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/process_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/process_state.cc -------------------------------------------------------------------------------- /sources/src/processor/processor.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/processor.gyp -------------------------------------------------------------------------------- /sources/src/processor/processor_tools.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/processor_tools.gypi -------------------------------------------------------------------------------- /sources/src/processor/proto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/proto/README -------------------------------------------------------------------------------- /sources/src/processor/proto/process_state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/proto/process_state.proto -------------------------------------------------------------------------------- /sources/src/processor/range_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/range_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/range_map.h -------------------------------------------------------------------------------- /sources/src/processor/range_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/range_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/simple_serializer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/simple_serializer-inl.h -------------------------------------------------------------------------------- /sources/src/processor/simple_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/simple_serializer.h -------------------------------------------------------------------------------- /sources/src/processor/simple_symbol_supplier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/simple_symbol_supplier.cc -------------------------------------------------------------------------------- /sources/src/processor/simple_symbol_supplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/simple_symbol_supplier.h -------------------------------------------------------------------------------- /sources/src/processor/source_line_resolver_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/source_line_resolver_base.cc -------------------------------------------------------------------------------- /sources/src/processor/source_line_resolver_base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/source_line_resolver_base_types.h -------------------------------------------------------------------------------- /sources/src/processor/stack_frame_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stack_frame_cpu.cc -------------------------------------------------------------------------------- /sources/src/processor/stack_frame_symbolizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stack_frame_symbolizer.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalk_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalk_common.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalk_common.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_address_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_address_list.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_address_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_address_list.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_address_list_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_address_list_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_amd64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_amd64.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_amd64.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_amd64_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_amd64_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm64.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm64.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm64_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm64_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_arm_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_arm_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_mips.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_mips.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_mips_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_mips_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_ppc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_ppc.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_ppc.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_ppc64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_ppc64.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_ppc64.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_selftest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_selftest.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_selftest_sol.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_selftest_sol.s -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_sparc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_sparc.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_sparc.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_unittest_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_unittest_utils.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_x86.cc -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_x86.h -------------------------------------------------------------------------------- /sources/src/processor/stackwalker_x86_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/stackwalker_x86_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/static_address_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_address_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/static_address_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_address_map.h -------------------------------------------------------------------------------- /sources/src/processor/static_address_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_address_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/static_contained_range_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_contained_range_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/static_contained_range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_contained_range_map.h -------------------------------------------------------------------------------- /sources/src/processor/static_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_map.h -------------------------------------------------------------------------------- /sources/src/processor/static_map_iterator-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_map_iterator-inl.h -------------------------------------------------------------------------------- /sources/src/processor/static_map_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_map_iterator.h -------------------------------------------------------------------------------- /sources/src/processor/static_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/static_range_map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_range_map-inl.h -------------------------------------------------------------------------------- /sources/src/processor/static_range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_range_map.h -------------------------------------------------------------------------------- /sources/src/processor/static_range_map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/static_range_map_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/symbolic_constants_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/symbolic_constants_win.cc -------------------------------------------------------------------------------- /sources/src/processor/symbolic_constants_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/symbolic_constants_win.h -------------------------------------------------------------------------------- /sources/src/processor/synth_minidump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/synth_minidump.cc -------------------------------------------------------------------------------- /sources/src/processor/synth_minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/synth_minidump.h -------------------------------------------------------------------------------- /sources/src/processor/synth_minidump_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/synth_minidump_unittest.cc -------------------------------------------------------------------------------- /sources/src/processor/synth_minidump_unittest_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/synth_minidump_unittest_data.h -------------------------------------------------------------------------------- /sources/src/processor/testdata/ascii_read_av.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/ascii_read_av.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/ascii_read_av_then_jmp.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/ascii_read_av_then_jmp.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/ascii_write_av.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/ascii_write_av.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/exec_av_on_stack.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/exec_av_on_stack.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_divide_by_zero.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_divide_by_zero.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_executable_heap.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_executable_heap.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_executable_stack.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_executable_stack.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_jmp_to_0.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_jmp_to_0.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_null_dereference.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_null_dereference.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_null_read_av.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_null_read_av.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_outside_module.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_outside_module.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_overflow.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_overflow.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_raise_sigabrt.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_raise_sigabrt.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_stacksmash.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_stacksmash.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_test_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_test_app.cc -------------------------------------------------------------------------------- /sources/src/processor/testdata/linux_write_to_under_4k.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/linux_write_to_under_4k.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/microdump-arm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/microdump-arm.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/microdump-arm64.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/microdump-arm64.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/minidump2.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/minidump2.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/null_read_av.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/null_read_av.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/null_write_av.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/null_write_av.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/read_av_clobber_write.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/read_av_clobber_write.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/read_av_conditional.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/read_av_conditional.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/read_av_non_null.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/read_av_non_null.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/stack_exhaustion.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/stack_exhaustion.dmp -------------------------------------------------------------------------------- /sources/src/processor/testdata/test_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/test_app.cc -------------------------------------------------------------------------------- /sources/src/processor/testdata/write_av_non_null.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/testdata/write_av_non_null.dmp -------------------------------------------------------------------------------- /sources/src/processor/tokenize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/tokenize.cc -------------------------------------------------------------------------------- /sources/src/processor/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/tokenize.h -------------------------------------------------------------------------------- /sources/src/processor/windows_frame_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/processor/windows_frame_info.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/COPYING -------------------------------------------------------------------------------- /sources/src/third_party/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/curl.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/curlbuild.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/curlrules.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/curlver.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/easy.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/mprintf.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/multi.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/stdcheaders.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /sources/src/third_party/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/Makefile.am -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/TODO -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_implicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_implicit.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_implicit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_implicit.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_insn.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_insn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_insn.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_invariant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_invariant.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_invariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_invariant.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_modrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_modrm.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_modrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_modrm.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_opcode_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_opcode_tables.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_opcode_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_opcode_tables.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_operand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_operand.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_operand.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_reg.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_reg.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_settings.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/ia32_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/ia32_settings.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/libdis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/libdis.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/libdisasm.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/libdisasm.gyp -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/qword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/qword.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/Makefile -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/README -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/libdisasm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/libdisasm.i -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/libdisasm_oop.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/libdisasm_oop.i -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/perl/Makefile-swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/perl/Makefile-swig -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/perl/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/perl/Makefile.PL -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/ruby/Makefile-swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/ruby/Makefile-swig -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/ruby/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/ruby/extconf.rb -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/swig/tcl/Makefile-swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/swig/tcl/Makefile-swig -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_disasm.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_format.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_imm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_imm.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_imm.h -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_insn.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_misc.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_operand_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_operand_list.c -------------------------------------------------------------------------------- /sources/src/third_party/libdisasm/x86_operand_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/libdisasm/x86_operand_list.h -------------------------------------------------------------------------------- /sources/src/third_party/linux/include/gflags/gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/third_party/linux/include/gflags/gflags.h -------------------------------------------------------------------------------- /sources/src/tools/linux/core2md/core2md.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/core2md/core2md.cc -------------------------------------------------------------------------------- /sources/src/tools/linux/dump_syms/dump_syms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/dump_syms/dump_syms.cc -------------------------------------------------------------------------------- /sources/src/tools/linux/md2core/minidump-2-core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/md2core/minidump-2-core.cc -------------------------------------------------------------------------------- /sources/src/tools/linux/md2core/minidump_memory_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/md2core/minidump_memory_range.h -------------------------------------------------------------------------------- /sources/src/tools/linux/symupload/minidump_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/symupload/minidump_upload.cc -------------------------------------------------------------------------------- /sources/src/tools/linux/symupload/sym_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/symupload/sym_upload.cc -------------------------------------------------------------------------------- /sources/src/tools/linux/tools_linux.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/linux/tools_linux.gypi -------------------------------------------------------------------------------- /sources/src/tools/mac/crash_report/crash_report.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/crash_report/crash_report.mm -------------------------------------------------------------------------------- /sources/src/tools/mac/dump_syms/dump_syms_tool.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/dump_syms/dump_syms_tool.mm -------------------------------------------------------------------------------- /sources/src/tools/mac/dump_syms/macho_dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/dump_syms/macho_dump.cc -------------------------------------------------------------------------------- /sources/src/tools/mac/symupload/minidump_upload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/symupload/minidump_upload.m -------------------------------------------------------------------------------- /sources/src/tools/mac/symupload/symupload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/symupload/symupload.m -------------------------------------------------------------------------------- /sources/src/tools/mac/tools_mac.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/tools_mac.gypi -------------------------------------------------------------------------------- /sources/src/tools/mac/upload_system_symbols/arch_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/mac/upload_system_symbols/arch_reader.go -------------------------------------------------------------------------------- /sources/src/tools/python/filter_syms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/python/filter_syms.py -------------------------------------------------------------------------------- /sources/src/tools/python/tests/filter_syms_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/python/tests/filter_syms_unittest.py -------------------------------------------------------------------------------- /sources/src/tools/solaris/dump_syms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/solaris/dump_syms/Makefile -------------------------------------------------------------------------------- /sources/src/tools/solaris/dump_syms/dump_syms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/solaris/dump_syms/dump_syms.cc -------------------------------------------------------------------------------- /sources/src/tools/solaris/dump_syms/run_regtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/solaris/dump_syms/run_regtest.sh -------------------------------------------------------------------------------- /sources/src/tools/tools.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/tools.gyp -------------------------------------------------------------------------------- /sources/src/tools/windows/dump_syms/dump_syms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/dump_syms/dump_syms.cc -------------------------------------------------------------------------------- /sources/src/tools/windows/dump_syms/dump_syms.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/dump_syms/dump_syms.gyp -------------------------------------------------------------------------------- /sources/src/tools/windows/dump_syms/dump_syms_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/dump_syms/dump_syms_unittest.cc -------------------------------------------------------------------------------- /sources/src/tools/windows/dump_syms/run_regtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/dump_syms/run_regtest.sh -------------------------------------------------------------------------------- /sources/src/tools/windows/refresh_binaries.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/refresh_binaries.bat -------------------------------------------------------------------------------- /sources/src/tools/windows/symupload/symupload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/symupload/symupload.cc -------------------------------------------------------------------------------- /sources/src/tools/windows/symupload/symupload.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/sources/src/tools/windows/symupload/symupload.gyp -------------------------------------------------------------------------------- /tools/core2md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/tools/core2md -------------------------------------------------------------------------------- /tools/dump_syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/tools/dump_syms -------------------------------------------------------------------------------- /tools/dump_syms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/tools/dump_syms.exe -------------------------------------------------------------------------------- /tools/dump_syms_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/tools/dump_syms_osx -------------------------------------------------------------------------------- /tools/minidump-2-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyunaev/google-breakpad-qt/HEAD/tools/minidump-2-core --------------------------------------------------------------------------------