Home
last modified time | relevance | path

Searched refs:T_ASSERT_NE_PTR (Results 1 – 5 of 5) sorted by relevance

/xnu-10063.141.1/tests/
H A Dshared_cache_reslide_test.c227T_ASSERT_NE_PTR(system_address, reslide_address, "system and reslide addresses should diverge %p %…
235T_ASSERT_NE_PTR(system_address, reslide_address, "system and reslide should diverge (after crash) …
236T_ASSERT_NE_PTR(confirm_address, reslide_address, "reslide and another reslide should diverge (aft…
257T_ASSERT_NE_PTR(system_address, reslide_address, "system and reslide should diverge (after crash, …
258T_ASSERT_NE_PTR(confirm_address, reslide_address, "reslide and another reslide should diverge (aft…
266T_ASSERT_NE_PTR(system_address, reslide_address, "system and reslide should diverge (after crash, …
267T_ASSERT_NE_PTR(confirm_address, reslide_address, "reslide and another reslide should diverge (aft…
H A Drestrict_jit.c21 T_ASSERT_NE_PTR(addr1, MAP_FAILED, "First map MAP_JIT");
H A Dproc_info.c423 T_ASSERT_NE_PTR(proc_config->cow_map, MAP_FAILED, "cow_map mmap()"); in spawn_child_processes()
648 T_ASSERT_NE_PTR(map_tmp, MAP_FAILED, "mmap() for PROC_PIDREGIONINFO"); in proc_info_caller()
2123 T_ASSERT_NE_PTR(addr, MAP_FAILED, "mmap of tmpfile");
2146 T_ASSERT_NE_PTR(addr, MAP_FAILED, "mmap of tmpfile");
/xnu-10063.141.1/libkern/os/
H A Dlog.c1390 T_ASSERT_NE_PTR(h1, OS_LOG_DEFAULT, "Custom log handle is not OS_LOG_DEFAULT"); in test_os_log_handles()
1396 T_ASSERT_NE_PTR(h1, h2, "Subsystem is not enough to identify a log handle"); in test_os_log_handles()
1399 T_ASSERT_NE_PTR(h1, h2, "Category is not enough to identify a log handle"); in test_os_log_handles()
1402 T_ASSERT_NE_PTR(h1, h2, "Different subsystem and category yield a different handle"); in test_os_log_handles()
1406 T_ASSERT_NE_PTR(h1, h2, "Subsystem and category cannot be mixed"); in test_os_log_handles()
1419 T_ASSERT_NE_PTR(h1, OS_LOG_DEFAULT, "Custom log handle is not OS_LOG_DEFAULT"); in test_os_log_handles()
1442 T_ASSERT_NE_PTR(OS_LOG_DEFAULT, log_handle, "Log handle is not OS_LOG_DEFAULT"); in test_os_log()
/xnu-10063.141.1/osfmk/tests/
H A Dktest.h626 #define T_ASSERT_NE_PTR(lhs, rhs, msg, ...) \ macro