Lines Matching refs:exc_info
367 exc_guard_helper_info_t exc_info; variable
369 block_raised_exc_guard_of_type(GUARD_TYPE_VIRT_MEMORY, &exc_info, ^{
375 T_ASSERT_EQ(exc_info.guard_flavor, kGUARD_EXC_SEC_UPL_WRITE_ON_EXEC_REGION,
377 T_ASSERT_EQ(exc_info.catch_count, 1, "Failing test should throw exactly one guard exception");
502 exc_guard_helper_info_t exc_info; variable
504 block_raised_exc_guard_of_type(GUARD_TYPE_VIRT_MEMORY, &exc_info, ^{
510 T_ASSERT_EQ(exc_info.guard_flavor, kGUARD_EXC_SEC_IOPL_ON_EXEC_PAGE,
512 T_ASSERT_EQ(exc_info.catch_count, 1, "Failing test should throw exactly one guard exception");
554 exc_guard_helper_info_t exc_info; variable
556 block_raised_exc_guard_of_type(GUARD_TYPE_VIRT_MEMORY, &exc_info, ^{
561 T_ASSERT_EQ(exc_info.guard_flavor, kGUARD_EXC_SEC_EXEC_ON_IOPL_PAGE,
563 …T_ASSERT_EQ(exc_info.catch_count, 1, "Attempted exec fault should throw exactly one guard exceptio…