Searched refs:ds_signal (Results 1 – 5 of 5) sorted by relevance
| /xnu-11215.61.5/tests/vm/ |
| H A D | memorystatus_freeze_test_entitled.c | 27 …dispatch_source_t ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, disp… variable 28 if (ds_signal == NULL) { 33 dispatch_source_set_event_handler(ds_signal, ^{ 37 dispatch_activate(ds_signal);
|
| H A D | memorystatus_freeze_test.c | 404 dispatch_source_t ds_signal; local 434 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 435 if (ds_signal == NULL) { 439 dispatch_source_set_event_handler(ds_signal, ^{ 473 dispatch_activate(ds_signal); 631 dispatch_source_t ds_signal, ds_exit; local 637 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 638 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); 639 dispatch_source_set_event_handler(ds_signal, ^{ 674 dispatch_activate(ds_signal); [all …]
|
| H A D | vm_reclaim.c | 385 dispatch_source_t ds_signal, ds_exit; in test_after_background_helper_launches() local 389 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… in test_after_background_helper_launches() 390 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); in test_after_background_helper_launches() 391 dispatch_source_set_event_handler(ds_signal, test_block); in test_after_background_helper_launches() 393 dispatch_activate(ds_signal); in test_after_background_helper_launches()
|
| /xnu-11215.61.5/tests/ |
| H A D | memorystatus_zone_test.c | 73 static dispatch_source_t ds_signal = NULL; variable 360 if (ds_signal != NULL) { in begin_test_teardown() 366 dispatch_source_cancel(ds_signal); in begin_test_teardown() 401 if (ds_signal != NULL) { in cleanup_and_end_test() 402 dispatch_source_cancel(ds_signal); in cleanup_and_end_test() 681 ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dq_spawn); in run_test() 682 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create: signal"); in run_test() 684 dispatch_source_set_event_handler(ds_signal, ^{ in run_test() 697 dispatch_activate(ds_signal); in run_test()
|
| H A D | perf_compressor.c | 290 dispatch_source_t ds_signal; variable 355 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 356 if (ds_signal == NULL) { 362 dispatch_source_set_event_handler(ds_signal, ^{ 391 dispatch_activate(ds_signal);
|