├── .clang-format ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .gn ├── .style.yapf ├── .vpython3 ├── AUTHORS ├── BUILD.gn ├── CMakeLists.txt ├── CONTRIBUTORS ├── DEPS ├── LICENSE ├── Makefile ├── OWNERS ├── README.getsentry.md ├── README.md ├── client ├── BUILD.gn ├── CMakeLists.txt ├── annotation.cc ├── annotation.h ├── annotation_list.cc ├── annotation_list.h ├── annotation_list_test.cc ├── annotation_test.cc ├── client_argv_handling.cc ├── client_argv_handling.h ├── crash_handler_base_ios.cc ├── crash_handler_base_ios.h ├── crash_handler_ios.cc ├── crash_handler_ios.h ├── crash_handler_tvos.cc ├── crash_handler_tvos.h ├── crash_report_database.cc ├── crash_report_database.h ├── crash_report_database_generic.cc ├── crash_report_database_mac.mm ├── crash_report_database_test.cc ├── crash_report_database_win.cc ├── crashpad_client.h ├── crashpad_client_fuchsia.cc ├── crashpad_client_ios.cc ├── crashpad_client_ios_test.mm ├── crashpad_client_linux.cc ├── crashpad_client_linux_test.cc ├── crashpad_client_mac.cc ├── crashpad_client_win.cc ├── crashpad_client_win_test.cc ├── crashpad_info.cc ├── crashpad_info.h ├── crashpad_info_note.S ├── crashpad_info_test.cc ├── ios_handler │ ├── exception_processor.h │ ├── exception_processor.mm │ ├── exception_processor_test.mm │ ├── in_process_handler.cc │ ├── in_process_handler.h │ ├── in_process_handler_test.cc │ ├── in_process_intermediate_dump_handler.cc │ ├── in_process_intermediate_dump_handler.h │ ├── in_process_intermediate_dump_handler_test.cc │ ├── prune_intermediate_dumps_and_crash_reports_thread.cc │ └── prune_intermediate_dumps_and_crash_reports_thread.h ├── length_delimited_ring_buffer.h ├── length_delimited_ring_buffer_test.cc ├── prune_crash_reports.cc ├── prune_crash_reports.h ├── prune_crash_reports_test.cc ├── pthread_create_linux.cc ├── ring_buffer_annotation.h ├── ring_buffer_annotation_load_test_main.cc ├── ring_buffer_annotation_test.cc ├── settings.cc ├── settings.h ├── settings_test.cc ├── simple_address_range_bag.h ├── simple_address_range_bag_test.cc ├── simple_string_dictionary.h ├── simple_string_dictionary_test.cc ├── simulate_crash.h ├── simulate_crash_ios.h ├── simulate_crash_linux.h ├── simulate_crash_mac.cc ├── simulate_crash_mac.h ├── simulate_crash_mac_test.cc ├── simulate_crash_win.h └── upload_behavior_ios.h ├── cmake ├── scripts │ └── install-llvm-mingw.ps1 └── toolchains │ ├── mingw_arm64.cmake │ └── win_arm64.cmake ├── codereview.settings ├── compat ├── BUILD.gn ├── CMakeLists.txt ├── android │ ├── dlfcn_internal.cc │ ├── dlfcn_internal.h │ ├── elf.h │ ├── linux │ │ ├── elf.h │ │ ├── prctl.h │ │ └── ptrace.h │ ├── sched.h │ └── sys │ │ ├── epoll.cc │ │ ├── epoll.h │ │ ├── mman.h │ │ ├── mman_mmap.cc │ │ ├── syscall.h │ │ └── user.h ├── ios │ └── mach │ │ ├── exc.defs │ │ ├── mach_exc.defs │ │ ├── mach_types.defs │ │ ├── machine │ │ └── machine_types.defs │ │ └── std_types.defs ├── linux │ ├── signal.h │ └── sys │ │ ├── mman.h │ │ ├── mman_memfd_create.cc │ │ ├── ptrace.h │ │ └── user.h ├── mac │ ├── Availability.h │ ├── AvailabilityVersions.h │ ├── kern │ │ └── exc_resource.h │ ├── mach-o │ │ └── loader.h │ ├── mach │ │ ├── i386 │ │ │ └── thread_state.h │ │ └── mach.h │ └── sys │ │ └── resource.h ├── mingw │ ├── dbghelp.h │ ├── werapi.h │ └── winnt.h ├── non_mac │ ├── mach-o │ │ └── loader.h │ └── mach │ │ ├── mach.h │ │ ├── machine.h │ │ └── vm_prot.h ├── non_win │ ├── dbghelp.h │ ├── minwinbase.h │ ├── timezoneapi.h │ ├── verrsrc.h │ ├── windows.h │ └── winnt.h └── win │ ├── getopt.h │ ├── strings.cc │ ├── strings.h │ ├── sys │ ├── time.h │ └── types.h │ ├── time.cc │ ├── time.h │ ├── winbase.h │ ├── winnt.h │ └── winternl.h ├── crashpad-config.cmake.in ├── doc ├── .gitignore ├── appengine │ ├── README │ ├── go.mod │ ├── go.sum │ └── src │ │ └── crashpad-home │ │ ├── app.yaml │ │ └── main.go ├── developing.md ├── favicon.ico ├── ios_overview_design.md ├── layering.png ├── man.md ├── overview.png ├── overview_design.md ├── status.md └── support │ ├── compat.sh │ ├── crashpad.doxy │ ├── crashpad.doxy.h │ ├── crashpad_doxygen.css │ ├── generate.sh │ ├── generate_doxygen.py │ └── generate_git.sh ├── example.cpp ├── handler ├── BUILD.gn ├── CMakeLists.txt ├── crash_report_upload_rate_limit.cc ├── crash_report_upload_rate_limit.h ├── crash_report_upload_rate_limit_test.cc ├── crash_report_upload_thread.cc ├── crash_report_upload_thread.h ├── crashpad_handler.md ├── crashpad_handler_main.cc ├── crashpad_handler_test.cc ├── crashpad_handler_test_extended_handler.cc ├── handler_main.cc ├── handler_main.h ├── linux │ ├── capture_snapshot.cc │ ├── capture_snapshot.h │ ├── crash_report_exception_handler.cc │ ├── crash_report_exception_handler.h │ ├── cros_crash_report_exception_handler.cc │ ├── cros_crash_report_exception_handler.h │ ├── exception_handler_server.cc │ ├── exception_handler_server.h │ ├── exception_handler_server_test.cc │ └── handler_trampoline.cc ├── mac │ ├── crash_report_exception_handler.cc │ ├── crash_report_exception_handler.h │ ├── exception_handler_server.cc │ ├── exception_handler_server.h │ ├── file_limit_annotation.cc │ └── file_limit_annotation.h ├── main.cc ├── minidump_to_upload_parameters.cc ├── minidump_to_upload_parameters.h ├── minidump_to_upload_parameters_test.cc ├── prune_crash_reports_thread.cc ├── prune_crash_reports_thread.h ├── user_stream_data_source.cc ├── user_stream_data_source.h └── win │ ├── .gitattributes │ ├── crash_other_program.cc │ ├── crash_report_exception_handler.cc │ ├── crash_report_exception_handler.h │ ├── crashy_signal.cc │ ├── crashy_test_program.cc │ ├── crashy_test_z7_loader.cc │ ├── fake_handler_that_crashes_at_startup.cc │ ├── fastfail_test_program.cc │ ├── hanging_program.cc │ ├── heap_corrupting_program.cc │ ├── loader_lock_dll.cc │ ├── self_destroying_test_program.cc │ ├── wer │ ├── BUILD.gn │ ├── crashpad_wer.cc │ ├── crashpad_wer.def │ ├── crashpad_wer.h │ ├── crashpad_wer.ver │ ├── crashpad_wer_main.cc │ └── crashpad_wer_module_unittest.cc │ ├── z7_test.cpp │ └── z7_test.dll ├── infra └── config │ ├── PRESUBMIT.py │ ├── generated │ ├── commit-queue.cfg │ ├── cr-buildbucket.cfg │ ├── luci-logdog.cfg │ ├── luci-milo.cfg │ ├── luci-scheduler.cfg │ ├── project.cfg │ └── realms.cfg │ └── main.star ├── libunwind ├── .clang-format ├── CMakeLists.txt ├── LICENSE.TXT ├── cmake │ ├── Modules │ │ ├── HandleCompilerRT.cmake │ │ └── HandleLibunwindFlags.cmake │ └── config-ix.cmake ├── docs │ ├── BuildingLibunwind.rst │ ├── CMakeLists.txt │ ├── README.txt │ ├── conf.py │ └── index.rst ├── include │ ├── __libunwind_config.h │ ├── libunwind.h │ ├── mach-o │ │ └── compact_unwind_encoding.h │ ├── unwind.h │ ├── unwind_arm_ehabi.h │ └── unwind_itanium.h ├── src │ ├── AddressSpace.hpp │ ├── CMakeLists.txt │ ├── CompactUnwinder.hpp │ ├── DwarfInstructions.hpp │ ├── DwarfParser.hpp │ ├── EHHeaderParser.hpp │ ├── FrameHeaderCache.hpp │ ├── RWMutex.hpp │ ├── Registers.hpp │ ├── Unwind-EHABI.cpp │ ├── Unwind-EHABI.h │ ├── Unwind-seh.cpp │ ├── Unwind-sjlj.c │ ├── UnwindCursor.hpp │ ├── UnwindLevel1-gcc-ext.c │ ├── UnwindLevel1.c │ ├── UnwindRegistersRestore.S │ ├── UnwindRegistersSave.S │ ├── Unwind_AppleExtras.cpp │ ├── assembly.h │ ├── cet_unwind.h │ ├── config.h │ ├── dwarf2.h │ ├── libunwind.cpp │ └── libunwind_ext.h └── test │ ├── CMakeLists.txt │ ├── alignment.compile.pass.cpp │ ├── floatregister.pass.cpp │ ├── forceunwind.pass.cpp │ ├── frameheadercache_test.pass.cpp │ ├── libunwind │ ├── __init__.py │ └── test │ │ ├── __init__.py │ │ └── config.py │ ├── libunwind_01.pass.cpp │ ├── libunwind_02.pass.cpp │ ├── lit.cfg.py │ ├── lit.site.cfg.in │ ├── remember_state_leak.pass.sh.s │ ├── signal_frame.pass.cpp │ ├── signal_unwind.pass.cpp │ ├── unw_getcontext.pass.cpp │ └── unwind_leaffunction.pass.cpp ├── minidump ├── BUILD.gn ├── CMakeLists.txt ├── minidump_annotation_writer.cc ├── minidump_annotation_writer.h ├── minidump_annotation_writer_test.cc ├── minidump_byte_array_writer.cc ├── minidump_byte_array_writer.h ├── minidump_byte_array_writer_test.cc ├── minidump_context.h ├── minidump_context_writer.cc ├── minidump_context_writer.h ├── minidump_context_writer_test.cc ├── minidump_crashpad_info_writer.cc ├── minidump_crashpad_info_writer.h ├── minidump_crashpad_info_writer_test.cc ├── minidump_exception_writer.cc ├── minidump_exception_writer.h ├── minidump_exception_writer_test.cc ├── minidump_extensions.cc ├── minidump_extensions.h ├── minidump_file_writer.cc ├── minidump_file_writer.h ├── minidump_file_writer_test.cc ├── minidump_handle_writer.cc ├── minidump_handle_writer.h ├── minidump_handle_writer_test.cc ├── minidump_memory_info_writer.cc ├── minidump_memory_info_writer.h ├── minidump_memory_info_writer_test.cc ├── minidump_memory_writer.cc ├── minidump_memory_writer.h ├── minidump_memory_writer_test.cc ├── minidump_misc_info_writer.cc ├── minidump_misc_info_writer.h ├── minidump_misc_info_writer_test.cc ├── minidump_module_crashpad_info_writer.cc ├── minidump_module_crashpad_info_writer.h ├── minidump_module_crashpad_info_writer_test.cc ├── minidump_module_writer.cc ├── minidump_module_writer.h ├── minidump_module_writer_test.cc ├── minidump_rva_list_writer.cc ├── minidump_rva_list_writer.h ├── minidump_rva_list_writer_test.cc ├── minidump_simple_string_dictionary_writer.cc ├── minidump_simple_string_dictionary_writer.h ├── minidump_simple_string_dictionary_writer_test.cc ├── minidump_stacktrace_writer.cc ├── minidump_stacktrace_writer.h ├── minidump_stream_writer.cc ├── minidump_stream_writer.h ├── minidump_string_writer.cc ├── minidump_string_writer.h ├── minidump_string_writer_test.cc ├── minidump_system_info_writer.cc ├── minidump_system_info_writer.h ├── minidump_system_info_writer_test.cc ├── minidump_thread_id_map.cc ├── minidump_thread_id_map.h ├── minidump_thread_id_map_test.cc ├── minidump_thread_name_list_writer.cc ├── minidump_thread_name_list_writer.h ├── minidump_thread_name_list_writer_test.cc ├── minidump_thread_writer.cc ├── minidump_thread_writer.h ├── minidump_thread_writer_test.cc ├── minidump_unloaded_module_writer.cc ├── minidump_unloaded_module_writer.h ├── minidump_unloaded_module_writer_test.cc ├── minidump_user_extension_stream_data_source.cc ├── minidump_user_extension_stream_data_source.h ├── minidump_user_stream_writer.cc ├── minidump_user_stream_writer.h ├── minidump_user_stream_writer_test.cc ├── minidump_writable.cc ├── minidump_writable.h ├── minidump_writable_test.cc ├── minidump_writer_util.cc ├── minidump_writer_util.h └── test │ ├── minidump_byte_array_writer_test_util.cc │ ├── minidump_byte_array_writer_test_util.h │ ├── minidump_context_test_util.cc │ ├── minidump_context_test_util.h │ ├── minidump_file_writer_test_util.cc │ ├── minidump_file_writer_test_util.h │ ├── minidump_memory_writer_test_util.cc │ ├── minidump_memory_writer_test_util.h │ ├── minidump_rva_list_test_util.cc │ ├── minidump_rva_list_test_util.h │ ├── minidump_string_writer_test_util.cc │ ├── minidump_string_writer_test_util.h │ ├── minidump_user_extension_stream_util.cc │ ├── minidump_user_extension_stream_util.h │ ├── minidump_writable_test_util.cc │ └── minidump_writable_test_util.h ├── navbar.md ├── package.h ├── snapshot ├── BUILD.gn ├── CMakeLists.txt ├── annotation_snapshot.cc ├── annotation_snapshot.h ├── capture_memory.cc ├── capture_memory.h ├── cpu_architecture.h ├── cpu_context.cc ├── cpu_context.h ├── cpu_context_test.cc ├── crashpad_info_client_options.cc ├── crashpad_info_client_options.h ├── crashpad_info_client_options_test.cc ├── crashpad_info_client_options_test_module.cc ├── crashpad_info_size_test_module.cc ├── crashpad_info_size_test_note.S ├── crashpad_types │ ├── crashpad_info_reader.cc │ ├── crashpad_info_reader.h │ ├── crashpad_info_reader_test.cc │ ├── image_annotation_reader.cc │ ├── image_annotation_reader.h │ └── image_annotation_reader_test.cc ├── elf │ ├── elf_dynamic_array_reader.cc │ ├── elf_dynamic_array_reader.h │ ├── elf_image_reader.cc │ ├── elf_image_reader.h │ ├── elf_image_reader_fuzzer.cc │ ├── elf_image_reader_fuzzer_corpus │ │ ├── .gitattributes │ │ ├── crashpad_snapshot_test_both_dt_hash_styles.so │ │ └── ret42 │ ├── elf_image_reader_test.cc │ ├── elf_image_reader_test_note.S │ ├── elf_symbol_table_reader.cc │ ├── elf_symbol_table_reader.h │ ├── module_snapshot_elf.cc │ ├── module_snapshot_elf.h │ └── test_exported_symbols.sym ├── exception_snapshot.h ├── fuchsia │ ├── cpu_context_fuchsia.cc │ ├── cpu_context_fuchsia.h │ ├── exception_snapshot_fuchsia.cc │ ├── exception_snapshot_fuchsia.h │ ├── memory_map_fuchsia.cc │ ├── memory_map_fuchsia.h │ ├── memory_map_region_snapshot_fuchsia.cc │ ├── memory_map_region_snapshot_fuchsia.h │ ├── process_reader_fuchsia.cc │ ├── process_reader_fuchsia.h │ ├── process_reader_fuchsia_test.cc │ ├── process_snapshot_fuchsia.cc │ ├── process_snapshot_fuchsia.h │ ├── process_snapshot_fuchsia_test.cc │ ├── system_snapshot_fuchsia.cc │ ├── system_snapshot_fuchsia.h │ ├── thread_snapshot_fuchsia.cc │ └── thread_snapshot_fuchsia.h ├── handle_snapshot.cc ├── handle_snapshot.h ├── hash_types_test.cc ├── ios │ ├── exception_snapshot_ios_intermediate_dump.cc │ ├── exception_snapshot_ios_intermediate_dump.h │ ├── intermediate_dump_reader_util.cc │ ├── intermediate_dump_reader_util.h │ ├── memory_snapshot_ios_intermediate_dump.cc │ ├── memory_snapshot_ios_intermediate_dump.h │ ├── memory_snapshot_ios_intermediate_dump_test.cc │ ├── module_snapshot_ios_intermediate_dump.cc │ ├── module_snapshot_ios_intermediate_dump.h │ ├── process_snapshot_ios_intermediate_dump.cc │ ├── process_snapshot_ios_intermediate_dump.h │ ├── process_snapshot_ios_intermediate_dump_test.cc │ ├── system_snapshot_ios_intermediate_dump.cc │ ├── system_snapshot_ios_intermediate_dump.h │ ├── testdata │ │ ├── crash-1fa088dda0adb41459d063078a0f384a0bb8eefa │ │ ├── crash-5726011582644224 │ │ ├── crash-6605504629637120 │ │ └── crash-c44acfcbccd8c7a8 │ ├── thread_snapshot_ios_intermediate_dump.cc │ └── thread_snapshot_ios_intermediate_dump.h ├── linux │ ├── capture_memory_delegate_linux.cc │ ├── capture_memory_delegate_linux.h │ ├── cpu_context_linux.cc │ ├── cpu_context_linux.h │ ├── debug_rendezvous.cc │ ├── debug_rendezvous.h │ ├── debug_rendezvous_test.cc │ ├── exception_snapshot_linux.cc │ ├── exception_snapshot_linux.h │ ├── exception_snapshot_linux_test.cc │ ├── process_reader_linux.cc │ ├── process_reader_linux.h │ ├── process_reader_linux_test.cc │ ├── process_snapshot_linux.cc │ ├── process_snapshot_linux.h │ ├── signal_context.h │ ├── system_snapshot_linux.cc │ ├── system_snapshot_linux.h │ ├── system_snapshot_linux_test.cc │ ├── test_modules.cc │ ├── test_modules.h │ ├── thread_snapshot_linux.cc │ └── thread_snapshot_linux.h ├── mac │ ├── cpu_context_mac.cc │ ├── cpu_context_mac.h │ ├── cpu_context_mac_test.cc │ ├── exception_snapshot_mac.cc │ ├── exception_snapshot_mac.h │ ├── mach_o_image_annotations_reader.cc │ ├── mach_o_image_annotations_reader.h │ ├── mach_o_image_annotations_reader_test.cc │ ├── mach_o_image_annotations_reader_test_module_crashy_initializer.cc │ ├── mach_o_image_annotations_reader_test_no_op.cc │ ├── mach_o_image_reader.cc │ ├── mach_o_image_reader.h │ ├── mach_o_image_reader_test.cc │ ├── mach_o_image_segment_reader.cc │ ├── mach_o_image_segment_reader.h │ ├── mach_o_image_segment_reader_test.cc │ ├── mach_o_image_symbol_table_reader.cc │ ├── mach_o_image_symbol_table_reader.h │ ├── module_snapshot_mac.cc │ ├── module_snapshot_mac.h │ ├── process_reader_mac.cc │ ├── process_reader_mac.h │ ├── process_reader_mac_test.cc │ ├── process_snapshot_mac.cc │ ├── process_snapshot_mac.h │ ├── process_types.cc │ ├── process_types.h │ ├── process_types │ │ ├── all.proctype │ │ ├── annotation.proctype │ │ ├── crashpad_info.proctype │ │ ├── crashreporterclient.proctype │ │ ├── custom.cc │ │ ├── dyld_images.proctype │ │ ├── flavors.h │ │ ├── internal.h │ │ ├── loader.proctype │ │ ├── nlist.proctype │ │ └── traits.h │ ├── process_types_test.cc │ ├── system_snapshot_mac.cc │ ├── system_snapshot_mac.h │ ├── system_snapshot_mac_test.cc │ ├── thread_snapshot_mac.cc │ └── thread_snapshot_mac.h ├── memory_map_region_snapshot.h ├── memory_snapshot.cc ├── memory_snapshot.h ├── memory_snapshot_generic.h ├── memory_snapshot_test.cc ├── minidump │ ├── exception_snapshot_minidump.cc │ ├── exception_snapshot_minidump.h │ ├── memory_snapshot_minidump.cc │ ├── memory_snapshot_minidump.h │ ├── minidump_annotation_reader.cc │ ├── minidump_annotation_reader.h │ ├── minidump_context_converter.cc │ ├── minidump_context_converter.h │ ├── minidump_simple_string_dictionary_reader.cc │ ├── minidump_simple_string_dictionary_reader.h │ ├── minidump_stream.h │ ├── minidump_string_list_reader.cc │ ├── minidump_string_list_reader.h │ ├── minidump_string_reader.cc │ ├── minidump_string_reader.h │ ├── module_snapshot_minidump.cc │ ├── module_snapshot_minidump.h │ ├── process_snapshot_minidump.cc │ ├── process_snapshot_minidump.h │ ├── process_snapshot_minidump_test.cc │ ├── system_snapshot_minidump.cc │ ├── system_snapshot_minidump.h │ ├── thread_snapshot_minidump.cc │ └── thread_snapshot_minidump.h ├── module_snapshot.h ├── posix │ ├── timezone.cc │ ├── timezone.h │ └── timezone_test.cc ├── process_snapshot.h ├── sanitized │ ├── memory_snapshot_sanitized.cc │ ├── memory_snapshot_sanitized.h │ ├── module_snapshot_sanitized.cc │ ├── module_snapshot_sanitized.h │ ├── process_snapshot_sanitized.cc │ ├── process_snapshot_sanitized.h │ ├── process_snapshot_sanitized_test.cc │ ├── sanitization_information.cc │ ├── sanitization_information.h │ ├── sanitization_information_test.cc │ ├── thread_snapshot_sanitized.cc │ └── thread_snapshot_sanitized.h ├── snapshot_constants.h ├── system_snapshot.h ├── test │ ├── test_cpu_context.cc │ ├── test_cpu_context.h │ ├── test_exception_snapshot.cc │ ├── test_exception_snapshot.h │ ├── test_memory_map_region_snapshot.cc │ ├── test_memory_map_region_snapshot.h │ ├── test_memory_snapshot.cc │ ├── test_memory_snapshot.h │ ├── test_module_snapshot.cc │ ├── test_module_snapshot.h │ ├── test_process_snapshot.cc │ ├── test_process_snapshot.h │ ├── test_system_snapshot.cc │ ├── test_system_snapshot.h │ ├── test_thread_snapshot.cc │ └── test_thread_snapshot.h ├── thread_snapshot.h ├── unloaded_module_snapshot.cc ├── unloaded_module_snapshot.h ├── win │ ├── capture_memory_delegate_win.cc │ ├── capture_memory_delegate_win.h │ ├── cpu_context_win.cc │ ├── cpu_context_win.h │ ├── cpu_context_win_test.cc │ ├── crashpad_snapshot_test_annotations.cc │ ├── crashpad_snapshot_test_crashing_child.cc │ ├── crashpad_snapshot_test_dump_without_crashing.cc │ ├── crashpad_snapshot_test_extra_memory_ranges.cc │ ├── crashpad_snapshot_test_image_reader.cc │ ├── crashpad_snapshot_test_image_reader_module.cc │ ├── end_to_end_test.py │ ├── exception_snapshot_win.cc │ ├── exception_snapshot_win.h │ ├── exception_snapshot_win_test.cc │ ├── extra_memory_ranges_test.cc │ ├── memory_map_region_snapshot_win.cc │ ├── memory_map_region_snapshot_win.h │ ├── module_snapshot_win.cc │ ├── module_snapshot_win.h │ ├── module_snapshot_win_test.cc │ ├── pe_image_annotations_reader.cc │ ├── pe_image_annotations_reader.h │ ├── pe_image_reader.cc │ ├── pe_image_reader.h │ ├── pe_image_reader_test.cc │ ├── pe_image_resource_reader.cc │ ├── pe_image_resource_reader.h │ ├── process_reader_win.cc │ ├── process_reader_win.h │ ├── process_reader_win_test.cc │ ├── process_snapshot_win.cc │ ├── process_snapshot_win.h │ ├── process_snapshot_win_test.cc │ ├── process_subrange_reader.cc │ ├── process_subrange_reader.h │ ├── system_snapshot_win.cc │ ├── system_snapshot_win.h │ ├── system_snapshot_win_test.cc │ ├── thread_snapshot_win.cc │ └── thread_snapshot_win.h └── x86 │ ├── cpuid_reader.cc │ └── cpuid_reader.h ├── test ├── BUILD.gn ├── errors.cc ├── errors.h ├── file.cc ├── file.h ├── filesystem.cc ├── filesystem.h ├── fuchsia_crashpad_tests.cml ├── gtest_death.h ├── gtest_main.cc ├── hex_string.cc ├── hex_string.h ├── hex_string_test.cc ├── ios │ ├── BUILD.gn │ ├── cptest_google_test_runner.mm │ ├── cptest_google_test_runner_delegate.h │ ├── crash_type_xctest.mm │ ├── google_test_setup.h │ ├── google_test_setup.mm │ └── host │ │ ├── BUILD.gn │ │ ├── Info.plist │ │ ├── cptest_application_delegate.h │ │ ├── cptest_application_delegate.mm │ │ ├── cptest_crash_view_controller.h │ │ ├── cptest_crash_view_controller.mm │ │ ├── cptest_shared_object.h │ │ ├── handler_forbidden_allocators.cc │ │ ├── handler_forbidden_allocators.h │ │ └── main.mm ├── linux │ ├── fake_ptrace_connection.cc │ ├── fake_ptrace_connection.h │ ├── get_tls.cc │ └── get_tls.h ├── mac │ ├── dyld.cc │ ├── dyld.h │ ├── exception_swallower.cc │ ├── exception_swallower.h │ ├── mach_errors.cc │ ├── mach_errors.h │ ├── mach_multiprocess.cc │ ├── mach_multiprocess.h │ └── mach_multiprocess_test.cc ├── main_arguments.cc ├── main_arguments.h ├── main_arguments_test.cc ├── multiprocess.h ├── multiprocess_exec.cc ├── multiprocess_exec.h ├── multiprocess_exec_fuchsia.cc ├── multiprocess_exec_posix.cc ├── multiprocess_exec_test.cc ├── multiprocess_exec_test_child.cc ├── multiprocess_exec_win.cc ├── multiprocess_posix.cc ├── multiprocess_posix_test.cc ├── process_type.cc ├── process_type.h ├── scoped_guarded_page.h ├── scoped_guarded_page_posix.cc ├── scoped_guarded_page_test.cc ├── scoped_guarded_page_win.cc ├── scoped_module_handle.cc ├── scoped_module_handle.h ├── scoped_set_thread_name.h ├── scoped_set_thread_name_fuchsia.cc ├── scoped_set_thread_name_posix.cc ├── scoped_set_thread_name_win.cc ├── scoped_temp_dir.cc ├── scoped_temp_dir.h ├── scoped_temp_dir_posix.cc ├── scoped_temp_dir_test.cc ├── scoped_temp_dir_win.cc ├── test_paths.cc ├── test_paths.h ├── test_paths_test.cc ├── test_paths_test_data_root.txt └── win │ ├── child_launcher.cc │ ├── child_launcher.h │ ├── win_child_process.cc │ ├── win_child_process.h │ ├── win_child_process_test.cc │ ├── win_multiprocess.cc │ ├── win_multiprocess.h │ ├── win_multiprocess_test.cc │ ├── win_multiprocess_with_temp_dir.cc │ └── win_multiprocess_with_temp_dir.h ├── third_party ├── cpp-httplib │ ├── BUILD.gn │ ├── README.crashpad │ └── cpp-httplib │ │ ├── LICENSE │ │ ├── README.md │ │ └── httplib.h ├── edo │ ├── BUILD.gn │ └── README.crashpad ├── fuchsia │ ├── BUILD.gn │ ├── README.crashpad │ └── runner.py ├── getopt │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.crashpad │ ├── getopt.cc │ └── getopt.h ├── googletest │ ├── BUILD.gn │ └── README.crashpad ├── libfuzzer │ └── BUILD.gn ├── linux │ └── README.md ├── lss │ ├── BUILD.gn │ ├── README.crashpad │ └── lss.h ├── mini_chromium │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── README.crashpad │ ├── build │ │ └── chromeos_buildflags.h │ └── utf_string_conversion_utils.mingw.cc ├── mpack │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.crashpad │ ├── mpack.cc │ └── mpack.h ├── ninja │ ├── README.crashpad │ └── ninja ├── xnu │ ├── APPLE_LICENSE │ ├── BUILD.gn │ ├── EXTERNAL_HEADERS │ │ └── mach-o │ │ │ └── loader.h │ ├── README.crashpad │ └── osfmk │ │ └── mach │ │ ├── exc.defs │ │ ├── mach_exc.defs │ │ ├── mach_types.defs │ │ ├── machine │ │ └── machine_types.defs │ │ └── std_types.defs └── zlib │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── README.crashpad │ └── zlib_crashpad.h ├── tools ├── BUILD.gn ├── CMakeLists.txt ├── base94_encoder.cc ├── base94_encoder.md ├── crashpad_database_util.cc ├── crashpad_database_util.md ├── crashpad_http_upload.cc ├── crashpad_http_upload.md ├── dump_minidump_annotations.cc ├── generate_dump.cc ├── generate_dump.md ├── mac │ ├── catch_exception_tool.cc │ ├── catch_exception_tool.md │ ├── exception_port_tool.cc │ ├── exception_port_tool.md │ ├── on_demand_service_tool.md │ ├── on_demand_service_tool.mm │ └── sectaskaccess_info.plist ├── run_with_crashpad.cc ├── run_with_crashpad.md ├── tool_support.cc └── tool_support.h └── util ├── BUILD.gn ├── CMakeLists.txt ├── file ├── delimited_file_reader.cc ├── delimited_file_reader.h ├── delimited_file_reader_test.cc ├── directory_reader.h ├── directory_reader_posix.cc ├── directory_reader_test.cc ├── directory_reader_win.cc ├── file_helper.cc ├── file_helper.h ├── file_io.cc ├── file_io.h ├── file_io_posix.cc ├── file_io_test.cc ├── file_io_win.cc ├── file_reader.cc ├── file_reader.h ├── file_reader_test.cc ├── file_seeker.cc ├── file_seeker.h ├── file_writer.cc ├── file_writer.h ├── filesystem.h ├── filesystem_posix.cc ├── filesystem_test.cc ├── filesystem_win.cc ├── output_stream_file_writer.cc ├── output_stream_file_writer.h ├── scoped_remove_file.cc ├── scoped_remove_file.h ├── string_file.cc ├── string_file.h └── string_file_test.cc ├── fuchsia ├── koid_utilities.cc ├── koid_utilities.h ├── scoped_task_suspend.cc ├── scoped_task_suspend.h └── traits.h ├── ios ├── ios_intermediate_dump_data.cc ├── ios_intermediate_dump_data.h ├── ios_intermediate_dump_format.h ├── ios_intermediate_dump_interface.cc ├── ios_intermediate_dump_interface.h ├── ios_intermediate_dump_list.cc ├── ios_intermediate_dump_list.h ├── ios_intermediate_dump_map.cc ├── ios_intermediate_dump_map.h ├── ios_intermediate_dump_object.cc ├── ios_intermediate_dump_object.h ├── ios_intermediate_dump_reader.cc ├── ios_intermediate_dump_reader.h ├── ios_intermediate_dump_reader_test.cc ├── ios_intermediate_dump_writer.cc ├── ios_intermediate_dump_writer.h ├── ios_intermediate_dump_writer_test.cc ├── ios_system_data_collector.h ├── ios_system_data_collector.mm ├── raw_logging.cc ├── raw_logging.h ├── scoped_background_task.h ├── scoped_background_task.mm ├── scoped_vm_map.cc ├── scoped_vm_map.h ├── scoped_vm_map_test.cc ├── scoped_vm_read.cc ├── scoped_vm_read.h └── scoped_vm_read_test.cc ├── linux ├── address_types.h ├── auxiliary_vector.cc ├── auxiliary_vector.h ├── auxiliary_vector_test.cc ├── checked_linux_address_range.h ├── direct_ptrace_connection.cc ├── direct_ptrace_connection.h ├── exception_handler_client.cc ├── exception_handler_client.h ├── exception_handler_protocol.cc ├── exception_handler_protocol.h ├── exception_information.h ├── initial_signal_dispositions.cc ├── initial_signal_dispositions.h ├── memory_map.cc ├── memory_map.h ├── memory_map_test.cc ├── pac_helper.cc ├── pac_helper.h ├── proc_stat_reader.cc ├── proc_stat_reader.h ├── proc_stat_reader_test.cc ├── proc_task_reader.cc ├── proc_task_reader.h ├── proc_task_reader_test.cc ├── ptrace_broker.cc ├── ptrace_broker.h ├── ptrace_broker_test.cc ├── ptrace_client.cc ├── ptrace_client.h ├── ptrace_connection.h ├── ptracer.cc ├── ptracer.h ├── ptracer_test.cc ├── scoped_pr_set_dumpable.cc ├── scoped_pr_set_dumpable.h ├── scoped_pr_set_ptracer.cc ├── scoped_pr_set_ptracer.h ├── scoped_ptrace_attach.cc ├── scoped_ptrace_attach.h ├── scoped_ptrace_attach_test.cc ├── socket.cc ├── socket.h ├── socket_test.cc ├── thread_info.cc ├── thread_info.h └── traits.h ├── mac ├── checked_mach_address_range.h ├── checked_mach_address_range_test.cc ├── launchd.h ├── launchd.mm ├── launchd_test.mm ├── mac_util.cc ├── mac_util.h ├── mac_util_test.mm ├── service_management.cc ├── service_management.h ├── service_management_test.mm ├── sysctl.cc ├── sysctl.h ├── sysctl_test.cc ├── xattr.cc ├── xattr.h └── xattr_test.cc ├── mach ├── bootstrap.cc ├── bootstrap.h ├── bootstrap_test.cc ├── child_port.defs ├── child_port_handshake.cc ├── child_port_handshake.h ├── child_port_handshake_test.cc ├── child_port_server.cc ├── child_port_server.h ├── child_port_server_test.cc ├── child_port_types.h ├── composite_mach_message_server.cc ├── composite_mach_message_server.h ├── composite_mach_message_server_test.cc ├── exc_client_variants.cc ├── exc_client_variants.h ├── exc_client_variants_test.cc ├── exc_server_variants.cc ├── exc_server_variants.h ├── exc_server_variants_test.cc ├── exception_behaviors.cc ├── exception_behaviors.h ├── exception_behaviors_test.cc ├── exception_ports.cc ├── exception_ports.h ├── exception_ports_test.cc ├── exception_types.cc ├── exception_types.h ├── exception_types_test.cc ├── mach_extensions.cc ├── mach_extensions.h ├── mach_extensions_test.cc ├── mach_message.cc ├── mach_message.h ├── mach_message_server.cc ├── mach_message_server.h ├── mach_message_server_test.cc ├── mach_message_test.cc ├── mig.py ├── mig_fix.py ├── mig_gen.py ├── notify_server.cc ├── notify_server.h ├── notify_server_test.cc ├── scoped_task_suspend.cc ├── scoped_task_suspend.h ├── scoped_task_suspend_test.cc ├── symbolic_constants_mach.cc ├── symbolic_constants_mach.h ├── symbolic_constants_mach_test.cc ├── task_for_pid.cc └── task_for_pid.h ├── misc ├── address_sanitizer.h ├── address_types.h ├── arm64_pac_bti.S ├── arraysize.h ├── arraysize_test.cc ├── as_underlying_type.h ├── capture_context.h ├── capture_context_linux.S ├── capture_context_mac.S ├── capture_context_test.cc ├── capture_context_test_util.h ├── capture_context_test_util_linux.cc ├── capture_context_test_util_mac.cc ├── capture_context_test_util_win.cc ├── capture_context_win.asm ├── capture_context_win_arm64.S ├── capture_context_win_arm64.asm ├── capture_context_win_arm64.obj ├── clock.h ├── clock_mac.cc ├── clock_posix.cc ├── clock_test.cc ├── clock_win.cc ├── elf_note_types.h ├── from_pointer_cast.h ├── from_pointer_cast_test.cc ├── implicit_cast.h ├── initialization_state.h ├── initialization_state_dcheck.cc ├── initialization_state_dcheck.h ├── initialization_state_dcheck_test.cc ├── initialization_state_test.cc ├── lexing.cc ├── lexing.h ├── memory_sanitizer.h ├── metrics.cc ├── metrics.h ├── no_cfi_icall.h ├── no_cfi_icall_test.cc ├── paths.h ├── paths_fuchsia.cc ├── paths_linux.cc ├── paths_mac.cc ├── paths_test.cc ├── paths_win.cc ├── pdb_structures.cc ├── pdb_structures.h ├── random_string.cc ├── random_string.h ├── random_string_test.cc ├── range_set.cc ├── range_set.h ├── range_set_test.cc ├── reinterpret_bytes.cc ├── reinterpret_bytes.h ├── reinterpret_bytes_test.cc ├── scoped_forbid_return.cc ├── scoped_forbid_return.h ├── scoped_forbid_return_test.cc ├── symbolic_constants_common.h ├── time.cc ├── time.h ├── time_linux.cc ├── time_test.cc ├── time_win.cc ├── tri_state.h ├── uuid.cc ├── uuid.h ├── uuid_test.cc ├── zlib.cc └── zlib.h ├── net ├── generate_test_server_key.py ├── http_body.cc ├── http_body.h ├── http_body_gzip.cc ├── http_body_gzip.h ├── http_body_gzip_test.cc ├── http_body_test.cc ├── http_body_test_util.cc ├── http_body_test_util.h ├── http_headers.h ├── http_multipart_builder.cc ├── http_multipart_builder.h ├── http_multipart_builder_test.cc ├── http_transport.cc ├── http_transport.h ├── http_transport_libcurl.cc ├── http_transport_mac.mm ├── http_transport_socket.cc ├── http_transport_test.cc ├── http_transport_test_server.cc ├── http_transport_win.cc ├── testdata │ ├── ascii_http_body.txt │ ├── binary_http_body.dat │ ├── crashpad_util_test_cert.pem │ └── crashpad_util_test_key.pem ├── tls.gni ├── url.cc ├── url.h └── url_test.cc ├── numeric ├── checked_address_range.cc ├── checked_address_range.h ├── checked_address_range_test.cc ├── checked_range.h ├── checked_range_test.cc ├── checked_vm_address_range.h ├── in_range_cast.h ├── in_range_cast_test.cc ├── int128.h ├── int128_test.cc └── safe_assignment.h ├── posix ├── close_multiple.cc ├── close_multiple.h ├── close_stdio.cc ├── close_stdio.h ├── drop_privileges.cc ├── drop_privileges.h ├── process_info.h ├── process_info_linux.cc ├── process_info_mac.cc ├── process_info_test.cc ├── scoped_dir.cc ├── scoped_dir.h ├── scoped_mmap.cc ├── scoped_mmap.h ├── scoped_mmap_test.cc ├── signals.cc ├── signals.h ├── signals_test.cc ├── spawn_subprocess.cc ├── spawn_subprocess.h ├── symbolic_constants_posix.cc ├── symbolic_constants_posix.h └── symbolic_constants_posix_test.cc ├── process ├── process_id.h ├── process_memory.cc ├── process_memory.h ├── process_memory_fuchsia.cc ├── process_memory_fuchsia.h ├── process_memory_linux.cc ├── process_memory_linux.h ├── process_memory_mac.cc ├── process_memory_mac.h ├── process_memory_mac_test.cc ├── process_memory_native.h ├── process_memory_range.cc ├── process_memory_range.h ├── process_memory_range_test.cc ├── process_memory_sanitized.cc ├── process_memory_sanitized.h ├── process_memory_sanitized_test.cc ├── process_memory_test.cc ├── process_memory_win.cc └── process_memory_win.h ├── stdlib ├── aligned_allocator.cc ├── aligned_allocator.h ├── aligned_allocator_test.cc ├── map_insert.h ├── map_insert_test.cc ├── objc.h ├── string_number_conversion.cc ├── string_number_conversion.h ├── string_number_conversion_test.cc ├── strlcpy.cc ├── strlcpy.h ├── strlcpy_test.cc ├── strnlen.cc ├── strnlen.h ├── strnlen_test.cc ├── thread_safe_vector.h └── thread_safe_vector_test.cc ├── stream ├── base94_output_stream.cc ├── base94_output_stream.h ├── base94_output_stream_test.cc ├── file_encoder.cc ├── file_encoder.h ├── file_encoder_test.cc ├── file_output_stream.cc ├── file_output_stream.h ├── log_output_stream.cc ├── log_output_stream.h ├── log_output_stream_test.cc ├── output_stream_interface.h ├── test_output_stream.cc ├── test_output_stream.h ├── zlib_output_stream.cc ├── zlib_output_stream.h └── zlib_output_stream_test.cc ├── string ├── split_string.cc ├── split_string.h └── split_string_test.cc ├── synchronization ├── scoped_spin_guard.h ├── scoped_spin_guard_test.cc ├── semaphore.h ├── semaphore_mac.cc ├── semaphore_posix.cc ├── semaphore_test.cc └── semaphore_win.cc ├── thread ├── stoppable.h ├── thread.cc ├── thread.h ├── thread_log_messages.cc ├── thread_log_messages.h ├── thread_log_messages_test.cc ├── thread_posix.cc ├── thread_test.cc ├── thread_win.cc ├── worker_thread.cc ├── worker_thread.h └── worker_thread_test.cc └── win ├── address_types.h ├── checked_win_address_range.h ├── command_line.cc ├── command_line.h ├── command_line_test.cc ├── context_wrappers.h ├── critical_section_with_debug_info.cc ├── critical_section_with_debug_info.h ├── critical_section_with_debug_info_test.cc ├── exception_codes.h ├── exception_handler_server.cc ├── exception_handler_server.h ├── exception_handler_server_test.cc ├── get_function.cc ├── get_function.h ├── get_function_test.cc ├── get_module_information.cc ├── get_module_information.h ├── handle.cc ├── handle.h ├── handle_test.cc ├── initial_client_data.cc ├── initial_client_data.h ├── initial_client_data_test.cc ├── loader_lock.cc ├── loader_lock.h ├── loader_lock_test.cc ├── loader_lock_test_dll.cc ├── module_version.cc ├── module_version.h ├── nt_internals.cc ├── nt_internals.h ├── ntstatus_logging.cc ├── ntstatus_logging.h ├── process_info.cc ├── process_info.h ├── process_info_test.cc ├── process_info_test_child.cc ├── process_structs.h ├── registration_protocol_win.cc ├── registration_protocol_win.h ├── registration_protocol_win_structs.h ├── registration_protocol_win_test.cc ├── safe_terminate_process.asm ├── safe_terminate_process.h ├── safe_terminate_process_test.cc ├── safe_terminate_process_test_child.cc ├── scoped_handle.cc ├── scoped_handle.h ├── scoped_local_alloc.cc ├── scoped_local_alloc.h ├── scoped_process_suspend.cc ├── scoped_process_suspend.h ├── scoped_process_suspend_test.cc ├── scoped_registry_key.h ├── scoped_set_event.cc ├── scoped_set_event.h ├── screenshot.cc ├── screenshot.h ├── session_end_watcher.cc ├── session_end_watcher.h ├── session_end_watcher_test.cc ├── termination_codes.h ├── traits.h └── xp_compat.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @getsentry/processing 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.gn -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.style.yapf -------------------------------------------------------------------------------- /.vpython3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/.vpython3 -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/BUILD.gn -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/DEPS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/OWNERS -------------------------------------------------------------------------------- /README.getsentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/README.getsentry.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/README.md -------------------------------------------------------------------------------- /client/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/BUILD.gn -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/annotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation.cc -------------------------------------------------------------------------------- /client/annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation.h -------------------------------------------------------------------------------- /client/annotation_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation_list.cc -------------------------------------------------------------------------------- /client/annotation_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation_list.h -------------------------------------------------------------------------------- /client/annotation_list_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation_list_test.cc -------------------------------------------------------------------------------- /client/annotation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/annotation_test.cc -------------------------------------------------------------------------------- /client/client_argv_handling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/client_argv_handling.cc -------------------------------------------------------------------------------- /client/client_argv_handling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/client_argv_handling.h -------------------------------------------------------------------------------- /client/crash_handler_base_ios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_base_ios.cc -------------------------------------------------------------------------------- /client/crash_handler_base_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_base_ios.h -------------------------------------------------------------------------------- /client/crash_handler_ios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_ios.cc -------------------------------------------------------------------------------- /client/crash_handler_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_ios.h -------------------------------------------------------------------------------- /client/crash_handler_tvos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_tvos.cc -------------------------------------------------------------------------------- /client/crash_handler_tvos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_handler_tvos.h -------------------------------------------------------------------------------- /client/crash_report_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_report_database.cc -------------------------------------------------------------------------------- /client/crash_report_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_report_database.h -------------------------------------------------------------------------------- /client/crash_report_database_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_report_database_mac.mm -------------------------------------------------------------------------------- /client/crash_report_database_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_report_database_test.cc -------------------------------------------------------------------------------- /client/crash_report_database_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crash_report_database_win.cc -------------------------------------------------------------------------------- /client/crashpad_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client.h -------------------------------------------------------------------------------- /client/crashpad_client_fuchsia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_fuchsia.cc -------------------------------------------------------------------------------- /client/crashpad_client_ios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_ios.cc -------------------------------------------------------------------------------- /client/crashpad_client_ios_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_ios_test.mm -------------------------------------------------------------------------------- /client/crashpad_client_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_linux.cc -------------------------------------------------------------------------------- /client/crashpad_client_linux_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_linux_test.cc -------------------------------------------------------------------------------- /client/crashpad_client_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_mac.cc -------------------------------------------------------------------------------- /client/crashpad_client_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_win.cc -------------------------------------------------------------------------------- /client/crashpad_client_win_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_client_win_test.cc -------------------------------------------------------------------------------- /client/crashpad_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_info.cc -------------------------------------------------------------------------------- /client/crashpad_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_info.h -------------------------------------------------------------------------------- /client/crashpad_info_note.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_info_note.S -------------------------------------------------------------------------------- /client/crashpad_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/crashpad_info_test.cc -------------------------------------------------------------------------------- /client/length_delimited_ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/length_delimited_ring_buffer.h -------------------------------------------------------------------------------- /client/prune_crash_reports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/prune_crash_reports.cc -------------------------------------------------------------------------------- /client/prune_crash_reports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/prune_crash_reports.h -------------------------------------------------------------------------------- /client/prune_crash_reports_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/prune_crash_reports_test.cc -------------------------------------------------------------------------------- /client/pthread_create_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/pthread_create_linux.cc -------------------------------------------------------------------------------- /client/ring_buffer_annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/ring_buffer_annotation.h -------------------------------------------------------------------------------- /client/ring_buffer_annotation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/ring_buffer_annotation_test.cc -------------------------------------------------------------------------------- /client/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/settings.cc -------------------------------------------------------------------------------- /client/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/settings.h -------------------------------------------------------------------------------- /client/settings_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/settings_test.cc -------------------------------------------------------------------------------- /client/simple_address_range_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simple_address_range_bag.h -------------------------------------------------------------------------------- /client/simple_string_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simple_string_dictionary.h -------------------------------------------------------------------------------- /client/simulate_crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash.h -------------------------------------------------------------------------------- /client/simulate_crash_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_ios.h -------------------------------------------------------------------------------- /client/simulate_crash_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_linux.h -------------------------------------------------------------------------------- /client/simulate_crash_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_mac.cc -------------------------------------------------------------------------------- /client/simulate_crash_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_mac.h -------------------------------------------------------------------------------- /client/simulate_crash_mac_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_mac_test.cc -------------------------------------------------------------------------------- /client/simulate_crash_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/simulate_crash_win.h -------------------------------------------------------------------------------- /client/upload_behavior_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/client/upload_behavior_ios.h -------------------------------------------------------------------------------- /cmake/scripts/install-llvm-mingw.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/cmake/scripts/install-llvm-mingw.ps1 -------------------------------------------------------------------------------- /cmake/toolchains/mingw_arm64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/cmake/toolchains/mingw_arm64.cmake -------------------------------------------------------------------------------- /cmake/toolchains/win_arm64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/cmake/toolchains/win_arm64.cmake -------------------------------------------------------------------------------- /codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/codereview.settings -------------------------------------------------------------------------------- /compat/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/BUILD.gn -------------------------------------------------------------------------------- /compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/CMakeLists.txt -------------------------------------------------------------------------------- /compat/android/dlfcn_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/dlfcn_internal.cc -------------------------------------------------------------------------------- /compat/android/dlfcn_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/dlfcn_internal.h -------------------------------------------------------------------------------- /compat/android/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/elf.h -------------------------------------------------------------------------------- /compat/android/linux/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/linux/elf.h -------------------------------------------------------------------------------- /compat/android/linux/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/linux/prctl.h -------------------------------------------------------------------------------- /compat/android/linux/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/linux/ptrace.h -------------------------------------------------------------------------------- /compat/android/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sched.h -------------------------------------------------------------------------------- /compat/android/sys/epoll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/epoll.cc -------------------------------------------------------------------------------- /compat/android/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/epoll.h -------------------------------------------------------------------------------- /compat/android/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/mman.h -------------------------------------------------------------------------------- /compat/android/sys/mman_mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/mman_mmap.cc -------------------------------------------------------------------------------- /compat/android/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/syscall.h -------------------------------------------------------------------------------- /compat/android/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/android/sys/user.h -------------------------------------------------------------------------------- /compat/ios/mach/exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/ios/mach/exc.defs -------------------------------------------------------------------------------- /compat/ios/mach/mach_exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/ios/mach/mach_exc.defs -------------------------------------------------------------------------------- /compat/ios/mach/mach_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/ios/mach/mach_types.defs -------------------------------------------------------------------------------- /compat/ios/mach/std_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/ios/mach/std_types.defs -------------------------------------------------------------------------------- /compat/linux/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/linux/signal.h -------------------------------------------------------------------------------- /compat/linux/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/linux/sys/mman.h -------------------------------------------------------------------------------- /compat/linux/sys/mman_memfd_create.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/linux/sys/mman_memfd_create.cc -------------------------------------------------------------------------------- /compat/linux/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/linux/sys/ptrace.h -------------------------------------------------------------------------------- /compat/linux/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/linux/sys/user.h -------------------------------------------------------------------------------- /compat/mac/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/Availability.h -------------------------------------------------------------------------------- /compat/mac/AvailabilityVersions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/AvailabilityVersions.h -------------------------------------------------------------------------------- /compat/mac/kern/exc_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/kern/exc_resource.h -------------------------------------------------------------------------------- /compat/mac/mach-o/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/mach-o/loader.h -------------------------------------------------------------------------------- /compat/mac/mach/i386/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/mach/i386/thread_state.h -------------------------------------------------------------------------------- /compat/mac/mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/mach/mach.h -------------------------------------------------------------------------------- /compat/mac/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mac/sys/resource.h -------------------------------------------------------------------------------- /compat/mingw/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mingw/dbghelp.h -------------------------------------------------------------------------------- /compat/mingw/werapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mingw/werapi.h -------------------------------------------------------------------------------- /compat/mingw/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/mingw/winnt.h -------------------------------------------------------------------------------- /compat/non_mac/mach-o/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_mac/mach-o/loader.h -------------------------------------------------------------------------------- /compat/non_mac/mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_mac/mach/mach.h -------------------------------------------------------------------------------- /compat/non_mac/mach/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_mac/mach/machine.h -------------------------------------------------------------------------------- /compat/non_mac/mach/vm_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_mac/mach/vm_prot.h -------------------------------------------------------------------------------- /compat/non_win/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/dbghelp.h -------------------------------------------------------------------------------- /compat/non_win/minwinbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/minwinbase.h -------------------------------------------------------------------------------- /compat/non_win/timezoneapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/timezoneapi.h -------------------------------------------------------------------------------- /compat/non_win/verrsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/verrsrc.h -------------------------------------------------------------------------------- /compat/non_win/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/windows.h -------------------------------------------------------------------------------- /compat/non_win/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/non_win/winnt.h -------------------------------------------------------------------------------- /compat/win/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/getopt.h -------------------------------------------------------------------------------- /compat/win/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/strings.cc -------------------------------------------------------------------------------- /compat/win/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/strings.h -------------------------------------------------------------------------------- /compat/win/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/sys/time.h -------------------------------------------------------------------------------- /compat/win/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/sys/types.h -------------------------------------------------------------------------------- /compat/win/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/time.cc -------------------------------------------------------------------------------- /compat/win/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/time.h -------------------------------------------------------------------------------- /compat/win/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/winbase.h -------------------------------------------------------------------------------- /compat/win/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/winnt.h -------------------------------------------------------------------------------- /compat/win/winternl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/compat/win/winternl.h -------------------------------------------------------------------------------- /crashpad-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/crashpad-config.cmake.in -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /generated 2 | -------------------------------------------------------------------------------- /doc/appengine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/appengine/README -------------------------------------------------------------------------------- /doc/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/appengine/go.mod -------------------------------------------------------------------------------- /doc/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/appengine/go.sum -------------------------------------------------------------------------------- /doc/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/developing.md -------------------------------------------------------------------------------- /doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/favicon.ico -------------------------------------------------------------------------------- /doc/ios_overview_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/ios_overview_design.md -------------------------------------------------------------------------------- /doc/layering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/layering.png -------------------------------------------------------------------------------- /doc/man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/man.md -------------------------------------------------------------------------------- /doc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/overview.png -------------------------------------------------------------------------------- /doc/overview_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/overview_design.md -------------------------------------------------------------------------------- /doc/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/status.md -------------------------------------------------------------------------------- /doc/support/compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/compat.sh -------------------------------------------------------------------------------- /doc/support/crashpad.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/crashpad.doxy -------------------------------------------------------------------------------- /doc/support/crashpad.doxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/crashpad.doxy.h -------------------------------------------------------------------------------- /doc/support/crashpad_doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/crashpad_doxygen.css -------------------------------------------------------------------------------- /doc/support/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/generate.sh -------------------------------------------------------------------------------- /doc/support/generate_doxygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/generate_doxygen.py -------------------------------------------------------------------------------- /doc/support/generate_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/doc/support/generate_git.sh -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/example.cpp -------------------------------------------------------------------------------- /handler/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/BUILD.gn -------------------------------------------------------------------------------- /handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/CMakeLists.txt -------------------------------------------------------------------------------- /handler/crash_report_upload_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/crash_report_upload_thread.cc -------------------------------------------------------------------------------- /handler/crash_report_upload_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/crash_report_upload_thread.h -------------------------------------------------------------------------------- /handler/crashpad_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/crashpad_handler.md -------------------------------------------------------------------------------- /handler/crashpad_handler_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/crashpad_handler_main.cc -------------------------------------------------------------------------------- /handler/crashpad_handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/crashpad_handler_test.cc -------------------------------------------------------------------------------- /handler/handler_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/handler_main.cc -------------------------------------------------------------------------------- /handler/handler_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/handler_main.h -------------------------------------------------------------------------------- /handler/linux/capture_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/linux/capture_snapshot.cc -------------------------------------------------------------------------------- /handler/linux/capture_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/linux/capture_snapshot.h -------------------------------------------------------------------------------- /handler/linux/handler_trampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/linux/handler_trampoline.cc -------------------------------------------------------------------------------- /handler/mac/file_limit_annotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/mac/file_limit_annotation.cc -------------------------------------------------------------------------------- /handler/mac/file_limit_annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/mac/file_limit_annotation.h -------------------------------------------------------------------------------- /handler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/main.cc -------------------------------------------------------------------------------- /handler/prune_crash_reports_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/prune_crash_reports_thread.cc -------------------------------------------------------------------------------- /handler/prune_crash_reports_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/prune_crash_reports_thread.h -------------------------------------------------------------------------------- /handler/user_stream_data_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/user_stream_data_source.cc -------------------------------------------------------------------------------- /handler/user_stream_data_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/user_stream_data_source.h -------------------------------------------------------------------------------- /handler/win/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/.gitattributes -------------------------------------------------------------------------------- /handler/win/crash_other_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/crash_other_program.cc -------------------------------------------------------------------------------- /handler/win/crashy_signal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/crashy_signal.cc -------------------------------------------------------------------------------- /handler/win/crashy_test_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/crashy_test_program.cc -------------------------------------------------------------------------------- /handler/win/crashy_test_z7_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/crashy_test_z7_loader.cc -------------------------------------------------------------------------------- /handler/win/fastfail_test_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/fastfail_test_program.cc -------------------------------------------------------------------------------- /handler/win/hanging_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/hanging_program.cc -------------------------------------------------------------------------------- /handler/win/loader_lock_dll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/loader_lock_dll.cc -------------------------------------------------------------------------------- /handler/win/wer/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/BUILD.gn -------------------------------------------------------------------------------- /handler/win/wer/crashpad_wer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/crashpad_wer.cc -------------------------------------------------------------------------------- /handler/win/wer/crashpad_wer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/crashpad_wer.def -------------------------------------------------------------------------------- /handler/win/wer/crashpad_wer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/crashpad_wer.h -------------------------------------------------------------------------------- /handler/win/wer/crashpad_wer.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/crashpad_wer.ver -------------------------------------------------------------------------------- /handler/win/wer/crashpad_wer_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/wer/crashpad_wer_main.cc -------------------------------------------------------------------------------- /handler/win/z7_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/z7_test.cpp -------------------------------------------------------------------------------- /handler/win/z7_test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/handler/win/z7_test.dll -------------------------------------------------------------------------------- /infra/config/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/infra/config/PRESUBMIT.py -------------------------------------------------------------------------------- /infra/config/generated/luci-milo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/infra/config/generated/luci-milo.cfg -------------------------------------------------------------------------------- /infra/config/generated/project.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/infra/config/generated/project.cfg -------------------------------------------------------------------------------- /infra/config/generated/realms.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/infra/config/generated/realms.cfg -------------------------------------------------------------------------------- /infra/config/main.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/infra/config/main.star -------------------------------------------------------------------------------- /libunwind/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | -------------------------------------------------------------------------------- /libunwind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/CMakeLists.txt -------------------------------------------------------------------------------- /libunwind/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/LICENSE.TXT -------------------------------------------------------------------------------- /libunwind/cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/cmake/config-ix.cmake -------------------------------------------------------------------------------- /libunwind/docs/BuildingLibunwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/docs/BuildingLibunwind.rst -------------------------------------------------------------------------------- /libunwind/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/docs/CMakeLists.txt -------------------------------------------------------------------------------- /libunwind/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/docs/README.txt -------------------------------------------------------------------------------- /libunwind/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/docs/conf.py -------------------------------------------------------------------------------- /libunwind/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/docs/index.rst -------------------------------------------------------------------------------- /libunwind/include/libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/include/libunwind.h -------------------------------------------------------------------------------- /libunwind/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/include/unwind.h -------------------------------------------------------------------------------- /libunwind/include/unwind_arm_ehabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/include/unwind_arm_ehabi.h -------------------------------------------------------------------------------- /libunwind/include/unwind_itanium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/include/unwind_itanium.h -------------------------------------------------------------------------------- /libunwind/src/AddressSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/AddressSpace.hpp -------------------------------------------------------------------------------- /libunwind/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/CMakeLists.txt -------------------------------------------------------------------------------- /libunwind/src/CompactUnwinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/CompactUnwinder.hpp -------------------------------------------------------------------------------- /libunwind/src/DwarfInstructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/DwarfInstructions.hpp -------------------------------------------------------------------------------- /libunwind/src/DwarfParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/DwarfParser.hpp -------------------------------------------------------------------------------- /libunwind/src/EHHeaderParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/EHHeaderParser.hpp -------------------------------------------------------------------------------- /libunwind/src/FrameHeaderCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/FrameHeaderCache.hpp -------------------------------------------------------------------------------- /libunwind/src/RWMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/RWMutex.hpp -------------------------------------------------------------------------------- /libunwind/src/Registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Registers.hpp -------------------------------------------------------------------------------- /libunwind/src/Unwind-EHABI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Unwind-EHABI.cpp -------------------------------------------------------------------------------- /libunwind/src/Unwind-EHABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Unwind-EHABI.h -------------------------------------------------------------------------------- /libunwind/src/Unwind-seh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Unwind-seh.cpp -------------------------------------------------------------------------------- /libunwind/src/Unwind-sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Unwind-sjlj.c -------------------------------------------------------------------------------- /libunwind/src/UnwindCursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/UnwindCursor.hpp -------------------------------------------------------------------------------- /libunwind/src/UnwindLevel1-gcc-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/UnwindLevel1-gcc-ext.c -------------------------------------------------------------------------------- /libunwind/src/UnwindLevel1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/UnwindLevel1.c -------------------------------------------------------------------------------- /libunwind/src/UnwindRegistersSave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/UnwindRegistersSave.S -------------------------------------------------------------------------------- /libunwind/src/Unwind_AppleExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/Unwind_AppleExtras.cpp -------------------------------------------------------------------------------- /libunwind/src/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/assembly.h -------------------------------------------------------------------------------- /libunwind/src/cet_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/cet_unwind.h -------------------------------------------------------------------------------- /libunwind/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/config.h -------------------------------------------------------------------------------- /libunwind/src/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/dwarf2.h -------------------------------------------------------------------------------- /libunwind/src/libunwind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/libunwind.cpp -------------------------------------------------------------------------------- /libunwind/src/libunwind_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/src/libunwind_ext.h -------------------------------------------------------------------------------- /libunwind/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/CMakeLists.txt -------------------------------------------------------------------------------- /libunwind/test/floatregister.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/floatregister.pass.cpp -------------------------------------------------------------------------------- /libunwind/test/forceunwind.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/forceunwind.pass.cpp -------------------------------------------------------------------------------- /libunwind/test/libunwind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libunwind/test/libunwind/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libunwind/test/libunwind_01.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/libunwind_01.pass.cpp -------------------------------------------------------------------------------- /libunwind/test/libunwind_02.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/libunwind_02.pass.cpp -------------------------------------------------------------------------------- /libunwind/test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/lit.cfg.py -------------------------------------------------------------------------------- /libunwind/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/lit.site.cfg.in -------------------------------------------------------------------------------- /libunwind/test/signal_frame.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/signal_frame.pass.cpp -------------------------------------------------------------------------------- /libunwind/test/signal_unwind.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/libunwind/test/signal_unwind.pass.cpp -------------------------------------------------------------------------------- /minidump/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/BUILD.gn -------------------------------------------------------------------------------- /minidump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/CMakeLists.txt -------------------------------------------------------------------------------- /minidump/minidump_annotation_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_annotation_writer.h -------------------------------------------------------------------------------- /minidump/minidump_byte_array_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_byte_array_writer.h -------------------------------------------------------------------------------- /minidump/minidump_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_context.h -------------------------------------------------------------------------------- /minidump/minidump_context_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_context_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_context_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_context_writer.h -------------------------------------------------------------------------------- /minidump/minidump_exception_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_exception_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_exception_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_exception_writer.h -------------------------------------------------------------------------------- /minidump/minidump_extensions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_extensions.cc -------------------------------------------------------------------------------- /minidump/minidump_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_extensions.h -------------------------------------------------------------------------------- /minidump/minidump_file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_file_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_file_writer.h -------------------------------------------------------------------------------- /minidump/minidump_file_writer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_file_writer_test.cc -------------------------------------------------------------------------------- /minidump/minidump_handle_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_handle_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_handle_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_handle_writer.h -------------------------------------------------------------------------------- /minidump/minidump_memory_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_memory_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_memory_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_memory_writer.h -------------------------------------------------------------------------------- /minidump/minidump_misc_info_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_misc_info_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_misc_info_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_misc_info_writer.h -------------------------------------------------------------------------------- /minidump/minidump_module_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_module_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_module_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_module_writer.h -------------------------------------------------------------------------------- /minidump/minidump_rva_list_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_rva_list_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_rva_list_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_rva_list_writer.h -------------------------------------------------------------------------------- /minidump/minidump_stacktrace_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_stacktrace_writer.h -------------------------------------------------------------------------------- /minidump/minidump_stream_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_stream_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_stream_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_stream_writer.h -------------------------------------------------------------------------------- /minidump/minidump_string_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_string_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_string_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_string_writer.h -------------------------------------------------------------------------------- /minidump/minidump_thread_id_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_thread_id_map.cc -------------------------------------------------------------------------------- /minidump/minidump_thread_id_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_thread_id_map.h -------------------------------------------------------------------------------- /minidump/minidump_thread_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_thread_writer.cc -------------------------------------------------------------------------------- /minidump/minidump_thread_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_thread_writer.h -------------------------------------------------------------------------------- /minidump/minidump_writable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_writable.cc -------------------------------------------------------------------------------- /minidump/minidump_writable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_writable.h -------------------------------------------------------------------------------- /minidump/minidump_writable_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_writable_test.cc -------------------------------------------------------------------------------- /minidump/minidump_writer_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_writer_util.cc -------------------------------------------------------------------------------- /minidump/minidump_writer_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/minidump/minidump_writer_util.h -------------------------------------------------------------------------------- /navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/navbar.md -------------------------------------------------------------------------------- /package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/package.h -------------------------------------------------------------------------------- /snapshot/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/BUILD.gn -------------------------------------------------------------------------------- /snapshot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/CMakeLists.txt -------------------------------------------------------------------------------- /snapshot/annotation_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/annotation_snapshot.cc -------------------------------------------------------------------------------- /snapshot/annotation_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/annotation_snapshot.h -------------------------------------------------------------------------------- /snapshot/capture_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/capture_memory.cc -------------------------------------------------------------------------------- /snapshot/capture_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/capture_memory.h -------------------------------------------------------------------------------- /snapshot/cpu_architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/cpu_architecture.h -------------------------------------------------------------------------------- /snapshot/cpu_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/cpu_context.cc -------------------------------------------------------------------------------- /snapshot/cpu_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/cpu_context.h -------------------------------------------------------------------------------- /snapshot/cpu_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/cpu_context_test.cc -------------------------------------------------------------------------------- /snapshot/elf/elf_image_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/elf/elf_image_reader.cc -------------------------------------------------------------------------------- /snapshot/elf/elf_image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/elf/elf_image_reader.h -------------------------------------------------------------------------------- /snapshot/elf/elf_image_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/elf/elf_image_reader_test.cc -------------------------------------------------------------------------------- /snapshot/elf/module_snapshot_elf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/elf/module_snapshot_elf.cc -------------------------------------------------------------------------------- /snapshot/elf/module_snapshot_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/elf/module_snapshot_elf.h -------------------------------------------------------------------------------- /snapshot/exception_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/exception_snapshot.h -------------------------------------------------------------------------------- /snapshot/fuchsia/memory_map_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/fuchsia/memory_map_fuchsia.h -------------------------------------------------------------------------------- /snapshot/handle_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/handle_snapshot.cc -------------------------------------------------------------------------------- /snapshot/handle_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/handle_snapshot.h -------------------------------------------------------------------------------- /snapshot/hash_types_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/hash_types_test.cc -------------------------------------------------------------------------------- /snapshot/linux/cpu_context_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/cpu_context_linux.cc -------------------------------------------------------------------------------- /snapshot/linux/cpu_context_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/cpu_context_linux.h -------------------------------------------------------------------------------- /snapshot/linux/debug_rendezvous.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/debug_rendezvous.cc -------------------------------------------------------------------------------- /snapshot/linux/debug_rendezvous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/debug_rendezvous.h -------------------------------------------------------------------------------- /snapshot/linux/process_reader_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/process_reader_linux.h -------------------------------------------------------------------------------- /snapshot/linux/signal_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/signal_context.h -------------------------------------------------------------------------------- /snapshot/linux/test_modules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/test_modules.cc -------------------------------------------------------------------------------- /snapshot/linux/test_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/linux/test_modules.h -------------------------------------------------------------------------------- /snapshot/mac/cpu_context_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/cpu_context_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/cpu_context_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/cpu_context_mac.h -------------------------------------------------------------------------------- /snapshot/mac/cpu_context_mac_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/cpu_context_mac_test.cc -------------------------------------------------------------------------------- /snapshot/mac/exception_snapshot_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/exception_snapshot_mac.h -------------------------------------------------------------------------------- /snapshot/mac/mach_o_image_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/mach_o_image_reader.cc -------------------------------------------------------------------------------- /snapshot/mac/mach_o_image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/mach_o_image_reader.h -------------------------------------------------------------------------------- /snapshot/mac/module_snapshot_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/module_snapshot_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/module_snapshot_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/module_snapshot_mac.h -------------------------------------------------------------------------------- /snapshot/mac/process_reader_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_reader_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/process_reader_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_reader_mac.h -------------------------------------------------------------------------------- /snapshot/mac/process_snapshot_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_snapshot_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/process_snapshot_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_snapshot_mac.h -------------------------------------------------------------------------------- /snapshot/mac/process_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types.cc -------------------------------------------------------------------------------- /snapshot/mac/process_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types.h -------------------------------------------------------------------------------- /snapshot/mac/process_types/custom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types/custom.cc -------------------------------------------------------------------------------- /snapshot/mac/process_types/flavors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types/flavors.h -------------------------------------------------------------------------------- /snapshot/mac/process_types/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types/internal.h -------------------------------------------------------------------------------- /snapshot/mac/process_types/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types/traits.h -------------------------------------------------------------------------------- /snapshot/mac/process_types_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/process_types_test.cc -------------------------------------------------------------------------------- /snapshot/mac/system_snapshot_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/system_snapshot_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/system_snapshot_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/system_snapshot_mac.h -------------------------------------------------------------------------------- /snapshot/mac/thread_snapshot_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/thread_snapshot_mac.cc -------------------------------------------------------------------------------- /snapshot/mac/thread_snapshot_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/mac/thread_snapshot_mac.h -------------------------------------------------------------------------------- /snapshot/memory_map_region_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/memory_map_region_snapshot.h -------------------------------------------------------------------------------- /snapshot/memory_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/memory_snapshot.cc -------------------------------------------------------------------------------- /snapshot/memory_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/memory_snapshot.h -------------------------------------------------------------------------------- /snapshot/memory_snapshot_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/memory_snapshot_generic.h -------------------------------------------------------------------------------- /snapshot/memory_snapshot_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/memory_snapshot_test.cc -------------------------------------------------------------------------------- /snapshot/minidump/minidump_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/minidump/minidump_stream.h -------------------------------------------------------------------------------- /snapshot/module_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/module_snapshot.h -------------------------------------------------------------------------------- /snapshot/posix/timezone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/posix/timezone.cc -------------------------------------------------------------------------------- /snapshot/posix/timezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/posix/timezone.h -------------------------------------------------------------------------------- /snapshot/posix/timezone_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/posix/timezone_test.cc -------------------------------------------------------------------------------- /snapshot/process_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/process_snapshot.h -------------------------------------------------------------------------------- /snapshot/snapshot_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/snapshot_constants.h -------------------------------------------------------------------------------- /snapshot/system_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/system_snapshot.h -------------------------------------------------------------------------------- /snapshot/test/test_cpu_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_cpu_context.cc -------------------------------------------------------------------------------- /snapshot/test/test_cpu_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_cpu_context.h -------------------------------------------------------------------------------- /snapshot/test/test_memory_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_memory_snapshot.cc -------------------------------------------------------------------------------- /snapshot/test/test_memory_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_memory_snapshot.h -------------------------------------------------------------------------------- /snapshot/test/test_module_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_module_snapshot.cc -------------------------------------------------------------------------------- /snapshot/test/test_module_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_module_snapshot.h -------------------------------------------------------------------------------- /snapshot/test/test_process_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_process_snapshot.h -------------------------------------------------------------------------------- /snapshot/test/test_system_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_system_snapshot.cc -------------------------------------------------------------------------------- /snapshot/test/test_system_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_system_snapshot.h -------------------------------------------------------------------------------- /snapshot/test/test_thread_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_thread_snapshot.cc -------------------------------------------------------------------------------- /snapshot/test/test_thread_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/test/test_thread_snapshot.h -------------------------------------------------------------------------------- /snapshot/thread_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/thread_snapshot.h -------------------------------------------------------------------------------- /snapshot/unloaded_module_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/unloaded_module_snapshot.cc -------------------------------------------------------------------------------- /snapshot/unloaded_module_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/unloaded_module_snapshot.h -------------------------------------------------------------------------------- /snapshot/win/cpu_context_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/cpu_context_win.cc -------------------------------------------------------------------------------- /snapshot/win/cpu_context_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/cpu_context_win.h -------------------------------------------------------------------------------- /snapshot/win/cpu_context_win_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/cpu_context_win_test.cc -------------------------------------------------------------------------------- /snapshot/win/end_to_end_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/end_to_end_test.py -------------------------------------------------------------------------------- /snapshot/win/exception_snapshot_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/exception_snapshot_win.h -------------------------------------------------------------------------------- /snapshot/win/module_snapshot_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/module_snapshot_win.cc -------------------------------------------------------------------------------- /snapshot/win/module_snapshot_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/module_snapshot_win.h -------------------------------------------------------------------------------- /snapshot/win/pe_image_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/pe_image_reader.cc -------------------------------------------------------------------------------- /snapshot/win/pe_image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/pe_image_reader.h -------------------------------------------------------------------------------- /snapshot/win/pe_image_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/pe_image_reader_test.cc -------------------------------------------------------------------------------- /snapshot/win/process_reader_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/process_reader_win.cc -------------------------------------------------------------------------------- /snapshot/win/process_reader_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/process_reader_win.h -------------------------------------------------------------------------------- /snapshot/win/process_snapshot_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/process_snapshot_win.cc -------------------------------------------------------------------------------- /snapshot/win/process_snapshot_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/process_snapshot_win.h -------------------------------------------------------------------------------- /snapshot/win/system_snapshot_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/system_snapshot_win.cc -------------------------------------------------------------------------------- /snapshot/win/system_snapshot_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/system_snapshot_win.h -------------------------------------------------------------------------------- /snapshot/win/thread_snapshot_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/thread_snapshot_win.cc -------------------------------------------------------------------------------- /snapshot/win/thread_snapshot_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/win/thread_snapshot_win.h -------------------------------------------------------------------------------- /snapshot/x86/cpuid_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/x86/cpuid_reader.cc -------------------------------------------------------------------------------- /snapshot/x86/cpuid_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/snapshot/x86/cpuid_reader.h -------------------------------------------------------------------------------- /test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/BUILD.gn -------------------------------------------------------------------------------- /test/errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/errors.cc -------------------------------------------------------------------------------- /test/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/errors.h -------------------------------------------------------------------------------- /test/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/file.cc -------------------------------------------------------------------------------- /test/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/file.h -------------------------------------------------------------------------------- /test/filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/filesystem.cc -------------------------------------------------------------------------------- /test/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/filesystem.h -------------------------------------------------------------------------------- /test/fuchsia_crashpad_tests.cml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/fuchsia_crashpad_tests.cml -------------------------------------------------------------------------------- /test/gtest_death.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/gtest_death.h -------------------------------------------------------------------------------- /test/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/gtest_main.cc -------------------------------------------------------------------------------- /test/hex_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/hex_string.cc -------------------------------------------------------------------------------- /test/hex_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/hex_string.h -------------------------------------------------------------------------------- /test/hex_string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/hex_string_test.cc -------------------------------------------------------------------------------- /test/ios/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/BUILD.gn -------------------------------------------------------------------------------- /test/ios/cptest_google_test_runner.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/cptest_google_test_runner.mm -------------------------------------------------------------------------------- /test/ios/crash_type_xctest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/crash_type_xctest.mm -------------------------------------------------------------------------------- /test/ios/google_test_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/google_test_setup.h -------------------------------------------------------------------------------- /test/ios/google_test_setup.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/google_test_setup.mm -------------------------------------------------------------------------------- /test/ios/host/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/host/BUILD.gn -------------------------------------------------------------------------------- /test/ios/host/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/host/Info.plist -------------------------------------------------------------------------------- /test/ios/host/cptest_shared_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/host/cptest_shared_object.h -------------------------------------------------------------------------------- /test/ios/host/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/ios/host/main.mm -------------------------------------------------------------------------------- /test/linux/fake_ptrace_connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/linux/fake_ptrace_connection.cc -------------------------------------------------------------------------------- /test/linux/fake_ptrace_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/linux/fake_ptrace_connection.h -------------------------------------------------------------------------------- /test/linux/get_tls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/linux/get_tls.cc -------------------------------------------------------------------------------- /test/linux/get_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/linux/get_tls.h -------------------------------------------------------------------------------- /test/mac/dyld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/dyld.cc -------------------------------------------------------------------------------- /test/mac/dyld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/dyld.h -------------------------------------------------------------------------------- /test/mac/exception_swallower.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/exception_swallower.cc -------------------------------------------------------------------------------- /test/mac/exception_swallower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/exception_swallower.h -------------------------------------------------------------------------------- /test/mac/mach_errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/mach_errors.cc -------------------------------------------------------------------------------- /test/mac/mach_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/mach_errors.h -------------------------------------------------------------------------------- /test/mac/mach_multiprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/mach_multiprocess.cc -------------------------------------------------------------------------------- /test/mac/mach_multiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/mach_multiprocess.h -------------------------------------------------------------------------------- /test/mac/mach_multiprocess_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/mac/mach_multiprocess_test.cc -------------------------------------------------------------------------------- /test/main_arguments.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/main_arguments.cc -------------------------------------------------------------------------------- /test/main_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/main_arguments.h -------------------------------------------------------------------------------- /test/main_arguments_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/main_arguments_test.cc -------------------------------------------------------------------------------- /test/multiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess.h -------------------------------------------------------------------------------- /test/multiprocess_exec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec.cc -------------------------------------------------------------------------------- /test/multiprocess_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec.h -------------------------------------------------------------------------------- /test/multiprocess_exec_fuchsia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec_fuchsia.cc -------------------------------------------------------------------------------- /test/multiprocess_exec_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec_posix.cc -------------------------------------------------------------------------------- /test/multiprocess_exec_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec_test.cc -------------------------------------------------------------------------------- /test/multiprocess_exec_test_child.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec_test_child.cc -------------------------------------------------------------------------------- /test/multiprocess_exec_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_exec_win.cc -------------------------------------------------------------------------------- /test/multiprocess_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_posix.cc -------------------------------------------------------------------------------- /test/multiprocess_posix_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/multiprocess_posix_test.cc -------------------------------------------------------------------------------- /test/process_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/process_type.cc -------------------------------------------------------------------------------- /test/process_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/process_type.h -------------------------------------------------------------------------------- /test/scoped_guarded_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_guarded_page.h -------------------------------------------------------------------------------- /test/scoped_guarded_page_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_guarded_page_posix.cc -------------------------------------------------------------------------------- /test/scoped_guarded_page_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_guarded_page_test.cc -------------------------------------------------------------------------------- /test/scoped_guarded_page_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_guarded_page_win.cc -------------------------------------------------------------------------------- /test/scoped_module_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_module_handle.cc -------------------------------------------------------------------------------- /test/scoped_module_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_module_handle.h -------------------------------------------------------------------------------- /test/scoped_set_thread_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_set_thread_name.h -------------------------------------------------------------------------------- /test/scoped_set_thread_name_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_set_thread_name_posix.cc -------------------------------------------------------------------------------- /test/scoped_set_thread_name_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_set_thread_name_win.cc -------------------------------------------------------------------------------- /test/scoped_temp_dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_temp_dir.cc -------------------------------------------------------------------------------- /test/scoped_temp_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_temp_dir.h -------------------------------------------------------------------------------- /test/scoped_temp_dir_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_temp_dir_posix.cc -------------------------------------------------------------------------------- /test/scoped_temp_dir_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_temp_dir_test.cc -------------------------------------------------------------------------------- /test/scoped_temp_dir_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/scoped_temp_dir_win.cc -------------------------------------------------------------------------------- /test/test_paths.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/test_paths.cc -------------------------------------------------------------------------------- /test/test_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/test_paths.h -------------------------------------------------------------------------------- /test/test_paths_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/test_paths_test.cc -------------------------------------------------------------------------------- /test/test_paths_test_data_root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/test_paths_test_data_root.txt -------------------------------------------------------------------------------- /test/win/child_launcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/child_launcher.cc -------------------------------------------------------------------------------- /test/win/child_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/child_launcher.h -------------------------------------------------------------------------------- /test/win/win_child_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_child_process.cc -------------------------------------------------------------------------------- /test/win/win_child_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_child_process.h -------------------------------------------------------------------------------- /test/win/win_child_process_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_child_process_test.cc -------------------------------------------------------------------------------- /test/win/win_multiprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_multiprocess.cc -------------------------------------------------------------------------------- /test/win/win_multiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_multiprocess.h -------------------------------------------------------------------------------- /test/win/win_multiprocess_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/test/win/win_multiprocess_test.cc -------------------------------------------------------------------------------- /third_party/cpp-httplib/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/cpp-httplib/BUILD.gn -------------------------------------------------------------------------------- /third_party/edo/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/edo/BUILD.gn -------------------------------------------------------------------------------- /third_party/edo/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/edo/README.crashpad -------------------------------------------------------------------------------- /third_party/fuchsia/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/fuchsia/BUILD.gn -------------------------------------------------------------------------------- /third_party/fuchsia/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/fuchsia/README.crashpad -------------------------------------------------------------------------------- /third_party/fuchsia/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/fuchsia/runner.py -------------------------------------------------------------------------------- /third_party/getopt/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/BUILD.gn -------------------------------------------------------------------------------- /third_party/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/getopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/LICENSE -------------------------------------------------------------------------------- /third_party/getopt/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/README.crashpad -------------------------------------------------------------------------------- /third_party/getopt/getopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/getopt.cc -------------------------------------------------------------------------------- /third_party/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/getopt/getopt.h -------------------------------------------------------------------------------- /third_party/googletest/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/googletest/BUILD.gn -------------------------------------------------------------------------------- /third_party/libfuzzer/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/libfuzzer/BUILD.gn -------------------------------------------------------------------------------- /third_party/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/linux/README.md -------------------------------------------------------------------------------- /third_party/lss/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/lss/BUILD.gn -------------------------------------------------------------------------------- /third_party/lss/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/lss/README.crashpad -------------------------------------------------------------------------------- /third_party/lss/lss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/lss/lss.h -------------------------------------------------------------------------------- /third_party/mini_chromium/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mini_chromium/BUILD.gn -------------------------------------------------------------------------------- /third_party/mpack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mpack/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/mpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mpack/LICENSE -------------------------------------------------------------------------------- /third_party/mpack/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mpack/README.crashpad -------------------------------------------------------------------------------- /third_party/mpack/mpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mpack/mpack.cc -------------------------------------------------------------------------------- /third_party/mpack/mpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/mpack/mpack.h -------------------------------------------------------------------------------- /third_party/ninja/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/ninja/README.crashpad -------------------------------------------------------------------------------- /third_party/ninja/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/ninja/ninja -------------------------------------------------------------------------------- /third_party/xnu/APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/xnu/APPLE_LICENSE -------------------------------------------------------------------------------- /third_party/xnu/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/xnu/BUILD.gn -------------------------------------------------------------------------------- /third_party/xnu/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/xnu/README.crashpad -------------------------------------------------------------------------------- /third_party/xnu/osfmk/mach/exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/xnu/osfmk/mach/exc.defs -------------------------------------------------------------------------------- /third_party/zlib/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/zlib/BUILD.gn -------------------------------------------------------------------------------- /third_party/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/zlib/README.crashpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/zlib/README.crashpad -------------------------------------------------------------------------------- /third_party/zlib/zlib_crashpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/third_party/zlib/zlib_crashpad.h -------------------------------------------------------------------------------- /tools/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/BUILD.gn -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/base94_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/base94_encoder.cc -------------------------------------------------------------------------------- /tools/base94_encoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/base94_encoder.md -------------------------------------------------------------------------------- /tools/crashpad_database_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/crashpad_database_util.cc -------------------------------------------------------------------------------- /tools/crashpad_database_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/crashpad_database_util.md -------------------------------------------------------------------------------- /tools/crashpad_http_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/crashpad_http_upload.cc -------------------------------------------------------------------------------- /tools/crashpad_http_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/crashpad_http_upload.md -------------------------------------------------------------------------------- /tools/dump_minidump_annotations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/dump_minidump_annotations.cc -------------------------------------------------------------------------------- /tools/generate_dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/generate_dump.cc -------------------------------------------------------------------------------- /tools/generate_dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/generate_dump.md -------------------------------------------------------------------------------- /tools/mac/catch_exception_tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/catch_exception_tool.cc -------------------------------------------------------------------------------- /tools/mac/catch_exception_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/catch_exception_tool.md -------------------------------------------------------------------------------- /tools/mac/exception_port_tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/exception_port_tool.cc -------------------------------------------------------------------------------- /tools/mac/exception_port_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/exception_port_tool.md -------------------------------------------------------------------------------- /tools/mac/on_demand_service_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/on_demand_service_tool.md -------------------------------------------------------------------------------- /tools/mac/on_demand_service_tool.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/on_demand_service_tool.mm -------------------------------------------------------------------------------- /tools/mac/sectaskaccess_info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/mac/sectaskaccess_info.plist -------------------------------------------------------------------------------- /tools/run_with_crashpad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/run_with_crashpad.cc -------------------------------------------------------------------------------- /tools/run_with_crashpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/run_with_crashpad.md -------------------------------------------------------------------------------- /tools/tool_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/tool_support.cc -------------------------------------------------------------------------------- /tools/tool_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/tools/tool_support.h -------------------------------------------------------------------------------- /util/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/BUILD.gn -------------------------------------------------------------------------------- /util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/CMakeLists.txt -------------------------------------------------------------------------------- /util/file/delimited_file_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/delimited_file_reader.cc -------------------------------------------------------------------------------- /util/file/delimited_file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/delimited_file_reader.h -------------------------------------------------------------------------------- /util/file/directory_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/directory_reader.h -------------------------------------------------------------------------------- /util/file/directory_reader_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/directory_reader_posix.cc -------------------------------------------------------------------------------- /util/file/directory_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/directory_reader_test.cc -------------------------------------------------------------------------------- /util/file/directory_reader_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/directory_reader_win.cc -------------------------------------------------------------------------------- /util/file/file_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_helper.cc -------------------------------------------------------------------------------- /util/file/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_helper.h -------------------------------------------------------------------------------- /util/file/file_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_io.cc -------------------------------------------------------------------------------- /util/file/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_io.h -------------------------------------------------------------------------------- /util/file/file_io_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_io_posix.cc -------------------------------------------------------------------------------- /util/file/file_io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_io_test.cc -------------------------------------------------------------------------------- /util/file/file_io_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_io_win.cc -------------------------------------------------------------------------------- /util/file/file_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_reader.cc -------------------------------------------------------------------------------- /util/file/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_reader.h -------------------------------------------------------------------------------- /util/file/file_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_reader_test.cc -------------------------------------------------------------------------------- /util/file/file_seeker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_seeker.cc -------------------------------------------------------------------------------- /util/file/file_seeker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_seeker.h -------------------------------------------------------------------------------- /util/file/file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_writer.cc -------------------------------------------------------------------------------- /util/file/file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/file_writer.h -------------------------------------------------------------------------------- /util/file/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/filesystem.h -------------------------------------------------------------------------------- /util/file/filesystem_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/filesystem_posix.cc -------------------------------------------------------------------------------- /util/file/filesystem_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/filesystem_test.cc -------------------------------------------------------------------------------- /util/file/filesystem_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/filesystem_win.cc -------------------------------------------------------------------------------- /util/file/output_stream_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/output_stream_file_writer.h -------------------------------------------------------------------------------- /util/file/scoped_remove_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/scoped_remove_file.cc -------------------------------------------------------------------------------- /util/file/scoped_remove_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/scoped_remove_file.h -------------------------------------------------------------------------------- /util/file/string_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/string_file.cc -------------------------------------------------------------------------------- /util/file/string_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/string_file.h -------------------------------------------------------------------------------- /util/file/string_file_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/file/string_file_test.cc -------------------------------------------------------------------------------- /util/fuchsia/koid_utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/fuchsia/koid_utilities.cc -------------------------------------------------------------------------------- /util/fuchsia/koid_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/fuchsia/koid_utilities.h -------------------------------------------------------------------------------- /util/fuchsia/scoped_task_suspend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/fuchsia/scoped_task_suspend.cc -------------------------------------------------------------------------------- /util/fuchsia/scoped_task_suspend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/fuchsia/scoped_task_suspend.h -------------------------------------------------------------------------------- /util/fuchsia/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/fuchsia/traits.h -------------------------------------------------------------------------------- /util/ios/ios_intermediate_dump_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_intermediate_dump_data.h -------------------------------------------------------------------------------- /util/ios/ios_intermediate_dump_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_intermediate_dump_list.h -------------------------------------------------------------------------------- /util/ios/ios_intermediate_dump_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_intermediate_dump_map.cc -------------------------------------------------------------------------------- /util/ios/ios_intermediate_dump_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_intermediate_dump_map.h -------------------------------------------------------------------------------- /util/ios/ios_system_data_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_system_data_collector.h -------------------------------------------------------------------------------- /util/ios/ios_system_data_collector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/ios_system_data_collector.mm -------------------------------------------------------------------------------- /util/ios/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/raw_logging.cc -------------------------------------------------------------------------------- /util/ios/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/raw_logging.h -------------------------------------------------------------------------------- /util/ios/scoped_background_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_background_task.h -------------------------------------------------------------------------------- /util/ios/scoped_background_task.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_background_task.mm -------------------------------------------------------------------------------- /util/ios/scoped_vm_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_map.cc -------------------------------------------------------------------------------- /util/ios/scoped_vm_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_map.h -------------------------------------------------------------------------------- /util/ios/scoped_vm_map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_map_test.cc -------------------------------------------------------------------------------- /util/ios/scoped_vm_read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_read.cc -------------------------------------------------------------------------------- /util/ios/scoped_vm_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_read.h -------------------------------------------------------------------------------- /util/ios/scoped_vm_read_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/ios/scoped_vm_read_test.cc -------------------------------------------------------------------------------- /util/linux/address_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/address_types.h -------------------------------------------------------------------------------- /util/linux/auxiliary_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/auxiliary_vector.cc -------------------------------------------------------------------------------- /util/linux/auxiliary_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/auxiliary_vector.h -------------------------------------------------------------------------------- /util/linux/auxiliary_vector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/auxiliary_vector_test.cc -------------------------------------------------------------------------------- /util/linux/direct_ptrace_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/direct_ptrace_connection.h -------------------------------------------------------------------------------- /util/linux/exception_handler_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/exception_handler_client.h -------------------------------------------------------------------------------- /util/linux/exception_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/exception_information.h -------------------------------------------------------------------------------- /util/linux/memory_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/memory_map.cc -------------------------------------------------------------------------------- /util/linux/memory_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/memory_map.h -------------------------------------------------------------------------------- /util/linux/memory_map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/memory_map_test.cc -------------------------------------------------------------------------------- /util/linux/pac_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/pac_helper.cc -------------------------------------------------------------------------------- /util/linux/pac_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/pac_helper.h -------------------------------------------------------------------------------- /util/linux/proc_stat_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_stat_reader.cc -------------------------------------------------------------------------------- /util/linux/proc_stat_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_stat_reader.h -------------------------------------------------------------------------------- /util/linux/proc_stat_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_stat_reader_test.cc -------------------------------------------------------------------------------- /util/linux/proc_task_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_task_reader.cc -------------------------------------------------------------------------------- /util/linux/proc_task_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_task_reader.h -------------------------------------------------------------------------------- /util/linux/proc_task_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/proc_task_reader_test.cc -------------------------------------------------------------------------------- /util/linux/ptrace_broker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_broker.cc -------------------------------------------------------------------------------- /util/linux/ptrace_broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_broker.h -------------------------------------------------------------------------------- /util/linux/ptrace_broker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_broker_test.cc -------------------------------------------------------------------------------- /util/linux/ptrace_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_client.cc -------------------------------------------------------------------------------- /util/linux/ptrace_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_client.h -------------------------------------------------------------------------------- /util/linux/ptrace_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptrace_connection.h -------------------------------------------------------------------------------- /util/linux/ptracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptracer.cc -------------------------------------------------------------------------------- /util/linux/ptracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptracer.h -------------------------------------------------------------------------------- /util/linux/ptracer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/ptracer_test.cc -------------------------------------------------------------------------------- /util/linux/scoped_pr_set_dumpable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_pr_set_dumpable.cc -------------------------------------------------------------------------------- /util/linux/scoped_pr_set_dumpable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_pr_set_dumpable.h -------------------------------------------------------------------------------- /util/linux/scoped_pr_set_ptracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_pr_set_ptracer.cc -------------------------------------------------------------------------------- /util/linux/scoped_pr_set_ptracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_pr_set_ptracer.h -------------------------------------------------------------------------------- /util/linux/scoped_ptrace_attach.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_ptrace_attach.cc -------------------------------------------------------------------------------- /util/linux/scoped_ptrace_attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/scoped_ptrace_attach.h -------------------------------------------------------------------------------- /util/linux/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/socket.cc -------------------------------------------------------------------------------- /util/linux/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/socket.h -------------------------------------------------------------------------------- /util/linux/socket_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/socket_test.cc -------------------------------------------------------------------------------- /util/linux/thread_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/thread_info.cc -------------------------------------------------------------------------------- /util/linux/thread_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/thread_info.h -------------------------------------------------------------------------------- /util/linux/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/linux/traits.h -------------------------------------------------------------------------------- /util/mac/checked_mach_address_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/checked_mach_address_range.h -------------------------------------------------------------------------------- /util/mac/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/launchd.h -------------------------------------------------------------------------------- /util/mac/launchd.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/launchd.mm -------------------------------------------------------------------------------- /util/mac/launchd_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/launchd_test.mm -------------------------------------------------------------------------------- /util/mac/mac_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/mac_util.cc -------------------------------------------------------------------------------- /util/mac/mac_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/mac_util.h -------------------------------------------------------------------------------- /util/mac/mac_util_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/mac_util_test.mm -------------------------------------------------------------------------------- /util/mac/service_management.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/service_management.cc -------------------------------------------------------------------------------- /util/mac/service_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/service_management.h -------------------------------------------------------------------------------- /util/mac/service_management_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/service_management_test.mm -------------------------------------------------------------------------------- /util/mac/sysctl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/sysctl.cc -------------------------------------------------------------------------------- /util/mac/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/sysctl.h -------------------------------------------------------------------------------- /util/mac/sysctl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/sysctl_test.cc -------------------------------------------------------------------------------- /util/mac/xattr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/xattr.cc -------------------------------------------------------------------------------- /util/mac/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/xattr.h -------------------------------------------------------------------------------- /util/mac/xattr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mac/xattr_test.cc -------------------------------------------------------------------------------- /util/mach/bootstrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/bootstrap.cc -------------------------------------------------------------------------------- /util/mach/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/bootstrap.h -------------------------------------------------------------------------------- /util/mach/bootstrap_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/bootstrap_test.cc -------------------------------------------------------------------------------- /util/mach/child_port.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port.defs -------------------------------------------------------------------------------- /util/mach/child_port_handshake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_handshake.cc -------------------------------------------------------------------------------- /util/mach/child_port_handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_handshake.h -------------------------------------------------------------------------------- /util/mach/child_port_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_server.cc -------------------------------------------------------------------------------- /util/mach/child_port_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_server.h -------------------------------------------------------------------------------- /util/mach/child_port_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_server_test.cc -------------------------------------------------------------------------------- /util/mach/child_port_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/child_port_types.h -------------------------------------------------------------------------------- /util/mach/exc_client_variants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_client_variants.cc -------------------------------------------------------------------------------- /util/mach/exc_client_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_client_variants.h -------------------------------------------------------------------------------- /util/mach/exc_client_variants_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_client_variants_test.cc -------------------------------------------------------------------------------- /util/mach/exc_server_variants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_server_variants.cc -------------------------------------------------------------------------------- /util/mach/exc_server_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_server_variants.h -------------------------------------------------------------------------------- /util/mach/exc_server_variants_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exc_server_variants_test.cc -------------------------------------------------------------------------------- /util/mach/exception_behaviors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_behaviors.cc -------------------------------------------------------------------------------- /util/mach/exception_behaviors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_behaviors.h -------------------------------------------------------------------------------- /util/mach/exception_behaviors_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_behaviors_test.cc -------------------------------------------------------------------------------- /util/mach/exception_ports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_ports.cc -------------------------------------------------------------------------------- /util/mach/exception_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_ports.h -------------------------------------------------------------------------------- /util/mach/exception_ports_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_ports_test.cc -------------------------------------------------------------------------------- /util/mach/exception_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_types.cc -------------------------------------------------------------------------------- /util/mach/exception_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_types.h -------------------------------------------------------------------------------- /util/mach/exception_types_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/exception_types_test.cc -------------------------------------------------------------------------------- /util/mach/mach_extensions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_extensions.cc -------------------------------------------------------------------------------- /util/mach/mach_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_extensions.h -------------------------------------------------------------------------------- /util/mach/mach_extensions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_extensions_test.cc -------------------------------------------------------------------------------- /util/mach/mach_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message.cc -------------------------------------------------------------------------------- /util/mach/mach_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message.h -------------------------------------------------------------------------------- /util/mach/mach_message_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message_server.cc -------------------------------------------------------------------------------- /util/mach/mach_message_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message_server.h -------------------------------------------------------------------------------- /util/mach/mach_message_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message_server_test.cc -------------------------------------------------------------------------------- /util/mach/mach_message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mach_message_test.cc -------------------------------------------------------------------------------- /util/mach/mig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mig.py -------------------------------------------------------------------------------- /util/mach/mig_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mig_fix.py -------------------------------------------------------------------------------- /util/mach/mig_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/mig_gen.py -------------------------------------------------------------------------------- /util/mach/notify_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/notify_server.cc -------------------------------------------------------------------------------- /util/mach/notify_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/notify_server.h -------------------------------------------------------------------------------- /util/mach/notify_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/notify_server_test.cc -------------------------------------------------------------------------------- /util/mach/scoped_task_suspend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/scoped_task_suspend.cc -------------------------------------------------------------------------------- /util/mach/scoped_task_suspend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/scoped_task_suspend.h -------------------------------------------------------------------------------- /util/mach/scoped_task_suspend_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/scoped_task_suspend_test.cc -------------------------------------------------------------------------------- /util/mach/symbolic_constants_mach.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/symbolic_constants_mach.cc -------------------------------------------------------------------------------- /util/mach/symbolic_constants_mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/symbolic_constants_mach.h -------------------------------------------------------------------------------- /util/mach/task_for_pid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/task_for_pid.cc -------------------------------------------------------------------------------- /util/mach/task_for_pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/mach/task_for_pid.h -------------------------------------------------------------------------------- /util/misc/address_sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/address_sanitizer.h -------------------------------------------------------------------------------- /util/misc/address_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/address_types.h -------------------------------------------------------------------------------- /util/misc/arm64_pac_bti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/arm64_pac_bti.S -------------------------------------------------------------------------------- /util/misc/arraysize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/arraysize.h -------------------------------------------------------------------------------- /util/misc/arraysize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/arraysize_test.cc -------------------------------------------------------------------------------- /util/misc/as_underlying_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/as_underlying_type.h -------------------------------------------------------------------------------- /util/misc/capture_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context.h -------------------------------------------------------------------------------- /util/misc/capture_context_linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_linux.S -------------------------------------------------------------------------------- /util/misc/capture_context_mac.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_mac.S -------------------------------------------------------------------------------- /util/misc/capture_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_test.cc -------------------------------------------------------------------------------- /util/misc/capture_context_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_test_util.h -------------------------------------------------------------------------------- /util/misc/capture_context_win.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_win.asm -------------------------------------------------------------------------------- /util/misc/capture_context_win_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/capture_context_win_arm64.S -------------------------------------------------------------------------------- /util/misc/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/clock.h -------------------------------------------------------------------------------- /util/misc/clock_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/clock_mac.cc -------------------------------------------------------------------------------- /util/misc/clock_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/clock_posix.cc -------------------------------------------------------------------------------- /util/misc/clock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/clock_test.cc -------------------------------------------------------------------------------- /util/misc/clock_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/clock_win.cc -------------------------------------------------------------------------------- /util/misc/elf_note_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/elf_note_types.h -------------------------------------------------------------------------------- /util/misc/from_pointer_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/from_pointer_cast.h -------------------------------------------------------------------------------- /util/misc/from_pointer_cast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/from_pointer_cast_test.cc -------------------------------------------------------------------------------- /util/misc/implicit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/implicit_cast.h -------------------------------------------------------------------------------- /util/misc/initialization_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/initialization_state.h -------------------------------------------------------------------------------- /util/misc/lexing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/lexing.cc -------------------------------------------------------------------------------- /util/misc/lexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/lexing.h -------------------------------------------------------------------------------- /util/misc/memory_sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/memory_sanitizer.h -------------------------------------------------------------------------------- /util/misc/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/metrics.cc -------------------------------------------------------------------------------- /util/misc/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/metrics.h -------------------------------------------------------------------------------- /util/misc/no_cfi_icall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/no_cfi_icall.h -------------------------------------------------------------------------------- /util/misc/no_cfi_icall_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/no_cfi_icall_test.cc -------------------------------------------------------------------------------- /util/misc/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths.h -------------------------------------------------------------------------------- /util/misc/paths_fuchsia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths_fuchsia.cc -------------------------------------------------------------------------------- /util/misc/paths_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths_linux.cc -------------------------------------------------------------------------------- /util/misc/paths_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths_mac.cc -------------------------------------------------------------------------------- /util/misc/paths_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths_test.cc -------------------------------------------------------------------------------- /util/misc/paths_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/paths_win.cc -------------------------------------------------------------------------------- /util/misc/pdb_structures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/pdb_structures.cc -------------------------------------------------------------------------------- /util/misc/pdb_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/pdb_structures.h -------------------------------------------------------------------------------- /util/misc/random_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/random_string.cc -------------------------------------------------------------------------------- /util/misc/random_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/random_string.h -------------------------------------------------------------------------------- /util/misc/random_string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/random_string_test.cc -------------------------------------------------------------------------------- /util/misc/range_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/range_set.cc -------------------------------------------------------------------------------- /util/misc/range_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/range_set.h -------------------------------------------------------------------------------- /util/misc/range_set_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/range_set_test.cc -------------------------------------------------------------------------------- /util/misc/reinterpret_bytes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/reinterpret_bytes.cc -------------------------------------------------------------------------------- /util/misc/reinterpret_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/reinterpret_bytes.h -------------------------------------------------------------------------------- /util/misc/reinterpret_bytes_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/reinterpret_bytes_test.cc -------------------------------------------------------------------------------- /util/misc/scoped_forbid_return.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/scoped_forbid_return.cc -------------------------------------------------------------------------------- /util/misc/scoped_forbid_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/scoped_forbid_return.h -------------------------------------------------------------------------------- /util/misc/symbolic_constants_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/symbolic_constants_common.h -------------------------------------------------------------------------------- /util/misc/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/time.cc -------------------------------------------------------------------------------- /util/misc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/time.h -------------------------------------------------------------------------------- /util/misc/time_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/time_linux.cc -------------------------------------------------------------------------------- /util/misc/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/time_test.cc -------------------------------------------------------------------------------- /util/misc/time_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/time_win.cc -------------------------------------------------------------------------------- /util/misc/tri_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/tri_state.h -------------------------------------------------------------------------------- /util/misc/uuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/uuid.cc -------------------------------------------------------------------------------- /util/misc/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/uuid.h -------------------------------------------------------------------------------- /util/misc/uuid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/uuid_test.cc -------------------------------------------------------------------------------- /util/misc/zlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/zlib.cc -------------------------------------------------------------------------------- /util/misc/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/misc/zlib.h -------------------------------------------------------------------------------- /util/net/generate_test_server_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/generate_test_server_key.py -------------------------------------------------------------------------------- /util/net/http_body.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body.cc -------------------------------------------------------------------------------- /util/net/http_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body.h -------------------------------------------------------------------------------- /util/net/http_body_gzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_gzip.cc -------------------------------------------------------------------------------- /util/net/http_body_gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_gzip.h -------------------------------------------------------------------------------- /util/net/http_body_gzip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_gzip_test.cc -------------------------------------------------------------------------------- /util/net/http_body_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_test.cc -------------------------------------------------------------------------------- /util/net/http_body_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_test_util.cc -------------------------------------------------------------------------------- /util/net/http_body_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_body_test_util.h -------------------------------------------------------------------------------- /util/net/http_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_headers.h -------------------------------------------------------------------------------- /util/net/http_multipart_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_multipart_builder.cc -------------------------------------------------------------------------------- /util/net/http_multipart_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_multipart_builder.h -------------------------------------------------------------------------------- /util/net/http_transport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport.cc -------------------------------------------------------------------------------- /util/net/http_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport.h -------------------------------------------------------------------------------- /util/net/http_transport_libcurl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport_libcurl.cc -------------------------------------------------------------------------------- /util/net/http_transport_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport_mac.mm -------------------------------------------------------------------------------- /util/net/http_transport_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport_socket.cc -------------------------------------------------------------------------------- /util/net/http_transport_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport_test.cc -------------------------------------------------------------------------------- /util/net/http_transport_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/http_transport_win.cc -------------------------------------------------------------------------------- /util/net/testdata/ascii_http_body.txt: -------------------------------------------------------------------------------- 1 | This is a test. 2 | -------------------------------------------------------------------------------- /util/net/tls.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/tls.gni -------------------------------------------------------------------------------- /util/net/url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/url.cc -------------------------------------------------------------------------------- /util/net/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/url.h -------------------------------------------------------------------------------- /util/net/url_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/net/url_test.cc -------------------------------------------------------------------------------- /util/numeric/checked_address_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/checked_address_range.cc -------------------------------------------------------------------------------- /util/numeric/checked_address_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/checked_address_range.h -------------------------------------------------------------------------------- /util/numeric/checked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/checked_range.h -------------------------------------------------------------------------------- /util/numeric/checked_range_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/checked_range_test.cc -------------------------------------------------------------------------------- /util/numeric/in_range_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/in_range_cast.h -------------------------------------------------------------------------------- /util/numeric/in_range_cast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/in_range_cast_test.cc -------------------------------------------------------------------------------- /util/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/int128.h -------------------------------------------------------------------------------- /util/numeric/int128_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/int128_test.cc -------------------------------------------------------------------------------- /util/numeric/safe_assignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/numeric/safe_assignment.h -------------------------------------------------------------------------------- /util/posix/close_multiple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/close_multiple.cc -------------------------------------------------------------------------------- /util/posix/close_multiple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/close_multiple.h -------------------------------------------------------------------------------- /util/posix/close_stdio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/close_stdio.cc -------------------------------------------------------------------------------- /util/posix/close_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/close_stdio.h -------------------------------------------------------------------------------- /util/posix/drop_privileges.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/drop_privileges.cc -------------------------------------------------------------------------------- /util/posix/drop_privileges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/drop_privileges.h -------------------------------------------------------------------------------- /util/posix/process_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/process_info.h -------------------------------------------------------------------------------- /util/posix/process_info_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/process_info_linux.cc -------------------------------------------------------------------------------- /util/posix/process_info_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/process_info_mac.cc -------------------------------------------------------------------------------- /util/posix/process_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/process_info_test.cc -------------------------------------------------------------------------------- /util/posix/scoped_dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/scoped_dir.cc -------------------------------------------------------------------------------- /util/posix/scoped_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/scoped_dir.h -------------------------------------------------------------------------------- /util/posix/scoped_mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/scoped_mmap.cc -------------------------------------------------------------------------------- /util/posix/scoped_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/scoped_mmap.h -------------------------------------------------------------------------------- /util/posix/scoped_mmap_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/scoped_mmap_test.cc -------------------------------------------------------------------------------- /util/posix/signals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/signals.cc -------------------------------------------------------------------------------- /util/posix/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/signals.h -------------------------------------------------------------------------------- /util/posix/signals_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/signals_test.cc -------------------------------------------------------------------------------- /util/posix/spawn_subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/spawn_subprocess.cc -------------------------------------------------------------------------------- /util/posix/spawn_subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/spawn_subprocess.h -------------------------------------------------------------------------------- /util/posix/symbolic_constants_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/posix/symbolic_constants_posix.h -------------------------------------------------------------------------------- /util/process/process_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_id.h -------------------------------------------------------------------------------- /util/process/process_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory.cc -------------------------------------------------------------------------------- /util/process/process_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory.h -------------------------------------------------------------------------------- /util/process/process_memory_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_fuchsia.h -------------------------------------------------------------------------------- /util/process/process_memory_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_linux.cc -------------------------------------------------------------------------------- /util/process/process_memory_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_linux.h -------------------------------------------------------------------------------- /util/process/process_memory_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_mac.cc -------------------------------------------------------------------------------- /util/process/process_memory_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_mac.h -------------------------------------------------------------------------------- /util/process/process_memory_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_native.h -------------------------------------------------------------------------------- /util/process/process_memory_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_range.cc -------------------------------------------------------------------------------- /util/process/process_memory_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_range.h -------------------------------------------------------------------------------- /util/process/process_memory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_test.cc -------------------------------------------------------------------------------- /util/process/process_memory_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_win.cc -------------------------------------------------------------------------------- /util/process/process_memory_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/process/process_memory_win.h -------------------------------------------------------------------------------- /util/stdlib/aligned_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/aligned_allocator.cc -------------------------------------------------------------------------------- /util/stdlib/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/aligned_allocator.h -------------------------------------------------------------------------------- /util/stdlib/aligned_allocator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/aligned_allocator_test.cc -------------------------------------------------------------------------------- /util/stdlib/map_insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/map_insert.h -------------------------------------------------------------------------------- /util/stdlib/map_insert_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/map_insert_test.cc -------------------------------------------------------------------------------- /util/stdlib/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/objc.h -------------------------------------------------------------------------------- /util/stdlib/strlcpy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strlcpy.cc -------------------------------------------------------------------------------- /util/stdlib/strlcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strlcpy.h -------------------------------------------------------------------------------- /util/stdlib/strlcpy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strlcpy_test.cc -------------------------------------------------------------------------------- /util/stdlib/strnlen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strnlen.cc -------------------------------------------------------------------------------- /util/stdlib/strnlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strnlen.h -------------------------------------------------------------------------------- /util/stdlib/strnlen_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/strnlen_test.cc -------------------------------------------------------------------------------- /util/stdlib/thread_safe_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stdlib/thread_safe_vector.h -------------------------------------------------------------------------------- /util/stream/base94_output_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/base94_output_stream.cc -------------------------------------------------------------------------------- /util/stream/base94_output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/base94_output_stream.h -------------------------------------------------------------------------------- /util/stream/file_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/file_encoder.cc -------------------------------------------------------------------------------- /util/stream/file_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/file_encoder.h -------------------------------------------------------------------------------- /util/stream/file_encoder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/file_encoder_test.cc -------------------------------------------------------------------------------- /util/stream/file_output_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/file_output_stream.cc -------------------------------------------------------------------------------- /util/stream/file_output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/file_output_stream.h -------------------------------------------------------------------------------- /util/stream/log_output_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/log_output_stream.cc -------------------------------------------------------------------------------- /util/stream/log_output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/log_output_stream.h -------------------------------------------------------------------------------- /util/stream/log_output_stream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/log_output_stream_test.cc -------------------------------------------------------------------------------- /util/stream/test_output_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/test_output_stream.cc -------------------------------------------------------------------------------- /util/stream/test_output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/test_output_stream.h -------------------------------------------------------------------------------- /util/stream/zlib_output_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/zlib_output_stream.cc -------------------------------------------------------------------------------- /util/stream/zlib_output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/stream/zlib_output_stream.h -------------------------------------------------------------------------------- /util/string/split_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/string/split_string.cc -------------------------------------------------------------------------------- /util/string/split_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/string/split_string.h -------------------------------------------------------------------------------- /util/string/split_string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/string/split_string_test.cc -------------------------------------------------------------------------------- /util/synchronization/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/synchronization/semaphore.h -------------------------------------------------------------------------------- /util/thread/stoppable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/stoppable.h -------------------------------------------------------------------------------- /util/thread/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread.cc -------------------------------------------------------------------------------- /util/thread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread.h -------------------------------------------------------------------------------- /util/thread/thread_log_messages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread_log_messages.cc -------------------------------------------------------------------------------- /util/thread/thread_log_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread_log_messages.h -------------------------------------------------------------------------------- /util/thread/thread_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread_posix.cc -------------------------------------------------------------------------------- /util/thread/thread_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread_test.cc -------------------------------------------------------------------------------- /util/thread/thread_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/thread_win.cc -------------------------------------------------------------------------------- /util/thread/worker_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/worker_thread.cc -------------------------------------------------------------------------------- /util/thread/worker_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/worker_thread.h -------------------------------------------------------------------------------- /util/thread/worker_thread_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/thread/worker_thread_test.cc -------------------------------------------------------------------------------- /util/win/address_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/address_types.h -------------------------------------------------------------------------------- /util/win/command_line.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/command_line.cc -------------------------------------------------------------------------------- /util/win/command_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/command_line.h -------------------------------------------------------------------------------- /util/win/command_line_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/command_line_test.cc -------------------------------------------------------------------------------- /util/win/context_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/context_wrappers.h -------------------------------------------------------------------------------- /util/win/exception_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/exception_codes.h -------------------------------------------------------------------------------- /util/win/get_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/get_function.cc -------------------------------------------------------------------------------- /util/win/get_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/get_function.h -------------------------------------------------------------------------------- /util/win/get_function_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/get_function_test.cc -------------------------------------------------------------------------------- /util/win/get_module_information.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/get_module_information.cc -------------------------------------------------------------------------------- /util/win/get_module_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/get_module_information.h -------------------------------------------------------------------------------- /util/win/handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/handle.cc -------------------------------------------------------------------------------- /util/win/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/handle.h -------------------------------------------------------------------------------- /util/win/handle_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/handle_test.cc -------------------------------------------------------------------------------- /util/win/initial_client_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/initial_client_data.cc -------------------------------------------------------------------------------- /util/win/initial_client_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/initial_client_data.h -------------------------------------------------------------------------------- /util/win/loader_lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/loader_lock.cc -------------------------------------------------------------------------------- /util/win/loader_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/loader_lock.h -------------------------------------------------------------------------------- /util/win/loader_lock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/loader_lock_test.cc -------------------------------------------------------------------------------- /util/win/loader_lock_test_dll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/loader_lock_test_dll.cc -------------------------------------------------------------------------------- /util/win/module_version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/module_version.cc -------------------------------------------------------------------------------- /util/win/module_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/module_version.h -------------------------------------------------------------------------------- /util/win/nt_internals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/nt_internals.cc -------------------------------------------------------------------------------- /util/win/nt_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/nt_internals.h -------------------------------------------------------------------------------- /util/win/ntstatus_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/ntstatus_logging.cc -------------------------------------------------------------------------------- /util/win/ntstatus_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/ntstatus_logging.h -------------------------------------------------------------------------------- /util/win/process_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/process_info.cc -------------------------------------------------------------------------------- /util/win/process_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/process_info.h -------------------------------------------------------------------------------- /util/win/process_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/process_info_test.cc -------------------------------------------------------------------------------- /util/win/process_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/process_structs.h -------------------------------------------------------------------------------- /util/win/safe_terminate_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/safe_terminate_process.h -------------------------------------------------------------------------------- /util/win/scoped_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_handle.cc -------------------------------------------------------------------------------- /util/win/scoped_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_handle.h -------------------------------------------------------------------------------- /util/win/scoped_local_alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_local_alloc.cc -------------------------------------------------------------------------------- /util/win/scoped_local_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_local_alloc.h -------------------------------------------------------------------------------- /util/win/scoped_process_suspend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_process_suspend.cc -------------------------------------------------------------------------------- /util/win/scoped_process_suspend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_process_suspend.h -------------------------------------------------------------------------------- /util/win/scoped_registry_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_registry_key.h -------------------------------------------------------------------------------- /util/win/scoped_set_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_set_event.cc -------------------------------------------------------------------------------- /util/win/scoped_set_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/scoped_set_event.h -------------------------------------------------------------------------------- /util/win/screenshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/screenshot.cc -------------------------------------------------------------------------------- /util/win/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/screenshot.h -------------------------------------------------------------------------------- /util/win/session_end_watcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/session_end_watcher.cc -------------------------------------------------------------------------------- /util/win/session_end_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/session_end_watcher.h -------------------------------------------------------------------------------- /util/win/termination_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/termination_codes.h -------------------------------------------------------------------------------- /util/win/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/traits.h -------------------------------------------------------------------------------- /util/win/xp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/crashpad/HEAD/util/win/xp_compat.h --------------------------------------------------------------------------------