Lines Matching refs:ExceptionRecord

72   EXPECT_EQ(observed->ExceptionRecord.ExceptionCode,  in ExpectExceptionStream()
73 expected->ExceptionRecord.ExceptionCode); in ExpectExceptionStream()
74 EXPECT_EQ(observed->ExceptionRecord.ExceptionFlags, in ExpectExceptionStream()
75 expected->ExceptionRecord.ExceptionFlags); in ExpectExceptionStream()
76 EXPECT_EQ(observed->ExceptionRecord.ExceptionRecord, in ExpectExceptionStream()
77 expected->ExceptionRecord.ExceptionRecord); in ExpectExceptionStream()
78 EXPECT_EQ(observed->ExceptionRecord.ExceptionAddress, in ExpectExceptionStream()
79 expected->ExceptionRecord.ExceptionAddress); in ExpectExceptionStream()
80 EXPECT_EQ(observed->ExceptionRecord.NumberParameters, in ExpectExceptionStream()
81 expected->ExceptionRecord.NumberParameters); in ExpectExceptionStream()
82 EXPECT_EQ(observed->ExceptionRecord.__unusedAlignment, 0u); in ExpectExceptionStream()
84 index < base::size(observed->ExceptionRecord.ExceptionInformation); in ExpectExceptionStream()
86 EXPECT_EQ(observed->ExceptionRecord.ExceptionInformation[index], in ExpectExceptionStream()
87 expected->ExceptionRecord.ExceptionInformation[index]); in ExpectExceptionStream()
174 expected_exception_stream.ExceptionRecord.ExceptionCode = kExceptionCode; in TEST()
175 expected_exception_stream.ExceptionRecord.ExceptionFlags = kExceptionFlags; in TEST()
176 expected_exception_stream.ExceptionRecord.ExceptionRecord = kExceptionRecord; in TEST()
177 expected_exception_stream.ExceptionRecord.ExceptionAddress = in TEST()
179 expected_exception_stream.ExceptionRecord.NumberParameters = in TEST()
182 expected_exception_stream.ExceptionRecord.ExceptionInformation[index] = in TEST()
205 expect_exception.ExceptionRecord.ExceptionCode = 100; in TEST()
206 expect_exception.ExceptionRecord.ExceptionFlags = 1; in TEST()
207 expect_exception.ExceptionRecord.ExceptionAddress = 0xfedcba9876543210; in TEST()
208 expect_exception.ExceptionRecord.NumberParameters = in TEST()
211 expect_exception.ExceptionRecord.ExceptionInformation[index] = in TEST()
220 expect_exception.ExceptionRecord.ExceptionCode); in TEST()
222 expect_exception.ExceptionRecord.ExceptionFlags); in TEST()
224 expect_exception.ExceptionRecord.ExceptionAddress); in TEST()