Home
last modified time | relevance | path

Searched refs:raw_exception (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/processor/
H A Dminidump_unittest.cc1133 const MDRawExceptionStream* raw_exception = md_exception->exception(); in TEST() local
1134 ASSERT_TRUE(raw_exception != NULL); in TEST()
1135 EXPECT_EQ(0xdcba4321, raw_exception->exception_record.exception_code); in TEST()
1136 EXPECT_EQ(0xf0e0d0c0, raw_exception->exception_record.exception_flags); in TEST()
1138 raw_exception->exception_record.exception_address); in TEST()
1207 const MDRawExceptionStream* raw_exception = md_exception->exception(); in TEST() local
1208 ASSERT_TRUE(raw_exception != NULL); in TEST()
1209 EXPECT_EQ(0xdcba4321, raw_exception->exception_record.exception_code); in TEST()
1210 EXPECT_EQ(0xf0e0d0c0, raw_exception->exception_record.exception_flags); in TEST()
1212 raw_exception->exception_record.exception_address); in TEST()
[all …]
H A Dminidump_processor.cc865 const MDRawExceptionStream* raw_exception = exception->exception(); in GetCrashReason() local
866 if (!raw_exception) in GetCrashReason()
870 *address = raw_exception->exception_record.exception_address; in GetCrashReason()
878 uint32_t exception_code = raw_exception->exception_record.exception_code; in GetCrashReason()
879 uint32_t exception_flags = raw_exception->exception_record.exception_flags; in GetCrashReason()
1312 if (raw_exception->exception_record.number_parameters >= 1) { in GetCrashReason()
1315 (raw_exception->exception_record.exception_information[0]); in GetCrashReason()
1334 raw_exception->exception_record.number_parameters >= 2) { in GetCrashReason()
1336 raw_exception->exception_record.exception_information[1]; in GetCrashReason()
1349 if (raw_exception->exception_record.number_parameters >= 1) { in GetCrashReason()
[all …]
H A Dexploitability_win.cc86 const MDRawExceptionStream* raw_exception = exception->exception(); in CheckPlatformExploitability() local
87 if (!raw_exception) { in CheckPlatformExploitability()
105 uint32_t exception_code = raw_exception->exception_record.exception_code; in CheckPlatformExploitability()
171 if (raw_exception->exception_record.number_parameters >= 1) { in CheckPlatformExploitability()
174 (raw_exception->exception_record.exception_information[0]); in CheckPlatformExploitability()
/aosp_15_r20/external/google-breakpad/src/client/mac/tests/
H A Dexception_handler_test.cc136 const MDRawExceptionStream* raw_exception = exception->exception(); in InProcessCrash() local
137 ASSERT_TRUE(raw_exception); in InProcessCrash()
141 raw_exception->exception_record.exception_code); in InProcessCrash()
143 raw_exception->exception_record.exception_flags); in InProcessCrash()
146 raw_exception->exception_record.exception_code); in InProcessCrash()
149 raw_exception->exception_record.exception_flags); in InProcessCrash()
152 raw_exception->exception_record.exception_flags); in InProcessCrash()
233 const MDRawExceptionStream* raw_exception = exception->exception(); in TEST_F() local
234 ASSERT_TRUE(raw_exception); in TEST_F()
237 raw_exception->exception_record.exception_code); in TEST_F()