Home
last modified time | relevance | path

Searched refs:c_request (Results 1 – 2 of 2) sorted by relevance

/xnu-11417.121.6/osfmk/kern/
H A Dexclaves_resource.c816 conclave->c_request = CONCLAVE_R_NONE; in exclaves_conclave_init()
887 assert3u(conclave->c_request, ==, CONCLAVE_R_NONE); in exclaves_conclave_detach()
976 conclave->c_request |= CONCLAVE_R_LAUNCH_REQUESTED; in exclaves_conclave_launch()
993 if (conclave->c_request & CONCLAVE_R_LAUNCH_REQUESTED) { in exclaves_update_state_machine_locked()
994 conclave->c_request &= ~CONCLAVE_R_LAUNCH_REQUESTED; in exclaves_update_state_machine_locked()
1003 } else if (conclave->c_request & CONCLAVE_R_SUSPEND_REQUESTED) { in exclaves_update_state_machine_locked()
1013 conclave->c_request &= ~CONCLAVE_R_SUSPEND_REQUESTED; in exclaves_update_state_machine_locked()
1032 } else if (conclave->c_request & CONCLAVE_R_STOP_REQUESTED) { in exclaves_update_state_machine_locked()
1033 conclave->c_request &= ~CONCLAVE_R_STOP_REQUESTED; in exclaves_update_state_machine_locked()
1117 conclave->c_request |= CONCLAVE_R_STOP_REQUESTED; in exclaves_conclave_stop()
[all …]
H A Dexclaves_resource.h105 conclave_request_t c_request; member