Lines Matching defs:Exception
725 // Exception Stream
728 // Exception Record
731 8, 7, 6, 5, 4, 3, 2, 1, // Exception address
761 const minidump::Exception &Exception = ExpectedStream->ExceptionRecord;
762 EXPECT_EQ(0x02040302u, Exception.ExceptionCode);
763 EXPECT_EQ(0x09080807u, Exception.ExceptionFlags);
764 EXPECT_EQ(0x0a09080706050403u, Exception.ExceptionRecord);
765 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionAddress);
766 EXPECT_EQ(4u, Exception.NumberParameters);
767 for (uint64_t index = 0; index < Exception.MaxParameters; ++index) {
769 Exception.ExceptionInformation[index]);