Searched refs:exception_record (Results 1 - 15 of 15) sorted by relevance
/external/compiler-rt/lib/asan/ |
H A D | asan_win.cc | 200 EXCEPTION_RECORD *exception_record = info->ExceptionRecord; local 203 if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION || 204 exception_record->ExceptionCode == EXCEPTION_IN_PAGE_ERROR) { 206 (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) 209 SignalContext sig = SignalContext::Create(exception_record, context);
|
/external/google-breakpad/src/client/windows/handler/ |
H A D | exception_handler.cc | 568 EXCEPTION_RECORD exception_record = {}; local 570 EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; 574 exception_record.ExceptionCode = STATUS_INVALID_PARAMETER; 579 exception_record.NumberParameters = 3; 580 exception_record.ExceptionInformation[0] = 582 exception_record.ExceptionInformation[1] = 584 exception_record.ExceptionInformation[2] = assertion.line; 648 EXCEPTION_RECORD exception_record = {}; local 650 EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; 654 exception_record 740 EXCEPTION_RECORD exception_record = {}; local [all...] |
/external/google-breakpad/src/processor/ |
H A D | exploitability_win.cc | 102 uint32_t exception_code = raw_exception->exception_record.exception_code; 172 if (raw_exception->exception_record.number_parameters >= 1) { 175 (raw_exception->exception_record.exception_information[0]);
|
H A D | minidump_processor.cc | 663 *address = raw_exception->exception_record.exception_address; 670 uint32_t exception_code = raw_exception->exception_record.exception_code; 671 uint32_t exception_flags = raw_exception->exception_record.exception_flags; 1023 if (raw_exception->exception_record.number_parameters >= 1) { 1026 (raw_exception->exception_record.exception_information[0]); 1045 raw_exception->exception_record.number_parameters >= 2) { 1047 raw_exception->exception_record.exception_information[1]; 1060 if (raw_exception->exception_record.number_parameters >= 1) { 1063 (raw_exception->exception_record.exception_information[0]); 1082 raw_exception->exception_record [all...] |
H A D | minidump_unittest.cc | 733 EXPECT_EQ(0xdcba4321, raw_exception->exception_record.exception_code); 734 EXPECT_EQ(0xf0e0d0c0, raw_exception->exception_record.exception_flags); 736 raw_exception->exception_record.exception_address); 807 EXPECT_EQ(0xdcba4321, raw_exception->exception_record.exception_code); 808 EXPECT_EQ(0xf0e0d0c0, raw_exception->exception_record.exception_flags); 810 raw_exception->exception_record.exception_address); 892 EXPECT_EQ(0xdcba4321, raw_exception->exception_record.exception_code); 893 EXPECT_EQ(0xf0e0d0c0, raw_exception->exception_record.exception_flags); 895 raw_exception->exception_record.exception_address); 974 EXPECT_EQ(0xdcba4321, raw_exception->exception_record [all...] |
H A D | minidump.cc | 2923 Swap(&exception_.exception_record.exception_code); 2924 Swap(&exception_.exception_record.exception_flags); 2925 Swap(&exception_.exception_record.exception_record); 2926 Swap(&exception_.exception_record.exception_address); 2927 Swap(&exception_.exception_record.number_parameters); 2928 // exception_.exception_record.__align is for alignment only and does not 2933 Swap(&exception_.exception_record.exception_information[parameter_index]); 2996 printf(" exception_record.exception_code = 0x%x\n", 2997 exception_.exception_record [all...] |
/external/google-breakpad/src/client/mac/tests/ |
H A D | exception_handler_test.cc | 137 raw_exception->exception_record.exception_code); 139 raw_exception->exception_record.exception_flags); 142 raw_exception->exception_record.exception_code); 145 raw_exception->exception_record.exception_flags); 148 raw_exception->exception_record.exception_flags); 233 raw_exception->exception_record.exception_code);
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_win.cc | 734 EXCEPTION_RECORD *exception_record = (EXCEPTION_RECORD*)siginfo; local 737 uptr pc = (uptr)exception_record->ExceptionAddress; 745 uptr access_addr = exception_record->ExceptionInformation[1];
|
/external/google-breakpad/src/google_breakpad/common/ |
H A D | minidump_format.h | 521 uint64_t exception_record; /* Address (in the minidump-producing host's member in struct:__anon6352 544 MDException exception_record; member in struct:__anon6353
|
/external/google-breakpad/src/client/solaris/handler/ |
H A D | minidump_generator.cc | 590 exception.get()->exception_record.exception_code = writer_args->signo; 591 exception.get()->exception_record.exception_flags = 0; 595 exception.get()->exception_record.exception_address = 610 exception.get()->exception_record.exception_address =
|
/external/google-breakpad/src/client/mac/handler/ |
H A D | minidump_generator.cc | 1129 exception_ptr->exception_record.exception_code = exception_type_; 1130 exception_ptr->exception_record.exception_flags = exception_code_; 1143 exception_ptr->exception_record.exception_address = exception_subcode_; 1145 exception_ptr->exception_record.exception_address = CurrentPCForStack(state);
|
/external/cmockery/cmockery_0_1_2/src/ |
H A D | cmockery.c | 1411 EXCEPTION_RECORD * const exception_record = local 1413 const DWORD code = exception_record->ExceptionCode; 1421 exception_record->ExceptionAddress);
|
/external/google-breakpad/src/client/linux/handler/ |
H A D | exception_handler_unittest.cc | 1020 raw->exception_record.exception_code); 1191 raw->exception_record.exception_code);
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
H A D | minidump_writer.cc | 625 exc.get()->exception_record.exception_code = dumper_->crash_signal(); 626 exc.get()->exception_record.exception_address = dumper_->crash_address();
|
/external/google-breakpad/src/tools/linux/md2core/ |
H A D | minidump-2-core.cc | 743 crashinfo->fatal_signal = (int) exp->exception_record.exception_code;
|
Completed in 203 milliseconds