Searched refs:exception_record (Results 1 - 15 of 15) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_win.cc200 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 Dexception_handler.cc568 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 Dexploitability_win.cc102 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 Dminidump_processor.cc663 *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 Dminidump_unittest.cc733 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 Dminidump.cc2923 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 Dexception_handler_test.cc137 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 Dsanitizer_win.cc734 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 Dminidump_format.h521 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 Dminidump_generator.cc590 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 Dminidump_generator.cc1129 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 Dcmockery.c1411 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 Dexception_handler_unittest.cc1020 raw->exception_record.exception_code);
1191 raw->exception_record.exception_code);
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.cc625 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 Dminidump-2-core.cc743 crashinfo->fatal_signal = (int) exp->exception_record.exception_code;

Completed in 203 milliseconds