Searched refs:ds_signal (Results 1 – 5 of 5) sorted by relevance
| /xnu-8792.81.2/tests/vm/ |
| H A D | memorystatus_freeze_test_entitled.c | 26 …dispatch_source_t ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, disp… variable 27 if (ds_signal == NULL) { 32 dispatch_source_set_event_handler(ds_signal, ^{ 36 dispatch_activate(ds_signal);
|
| H A D | memorystatus_freeze_test.c | 417 dispatch_source_t ds_signal; local 447 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 448 if (ds_signal == NULL) { 452 dispatch_source_set_event_handler(ds_signal, ^{ 486 dispatch_activate(ds_signal); 609 dispatch_source_t ds_signal, ds_exit; local 615 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 616 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); 617 dispatch_source_set_event_handler(ds_signal, ^{ 652 dispatch_activate(ds_signal); [all …]
|
| H A D | vm_reclaim.c | 291 dispatch_source_t ds_signal, ds_exit; in test_after_background_helper_launches() local 295 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… in test_after_background_helper_launches() 296 T_QUIET; T_ASSERT_NOTNULL(ds_signal, "dispatch_source_create"); in test_after_background_helper_launches() 297 dispatch_source_set_event_handler(ds_signal, test_block); in test_after_background_helper_launches() 299 dispatch_activate(ds_signal); in test_after_background_helper_launches()
|
| /xnu-8792.81.2/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 | 289 dispatch_source_t ds_signal; variable 354 …ds_signal = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGUSR1, 0, dispatch_get_main_queu… 355 if (ds_signal == NULL) { 361 dispatch_source_set_event_handler(ds_signal, ^{ 390 dispatch_activate(ds_signal);
|