Searched refs:ds_signal (Results 1 – 5 of 5) sorted by relevance
| /xnu-11417.121.6/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 | 436 dispatch_source_t ds_signal; local 466 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 467 if (ds_signal == NULL) { 471 dispatch_source_set_event_handler(ds_signal, ^{ 505 dispatch_activate(ds_signal); 663 dispatch_source_t ds_signal, ds_exit; local 669 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 670 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); 671 dispatch_source_set_event_handler(ds_signal, ^{ 706 dispatch_activate(ds_signal); [all …]
|
| H A D | vm_reclaim.c | 429 dispatch_source_t ds_signal, ds_exit; in test_after_background_helper_launches() local 433 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… in test_after_background_helper_launches() 434 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); in test_after_background_helper_launches() 435 dispatch_source_set_event_handler(ds_signal, test_block); in test_after_background_helper_launches() 437 dispatch_activate(ds_signal); in test_after_background_helper_launches()
|
| /xnu-11417.121.6/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);
|