Home
last modified time | relevance | path

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

/xnu-12377.41.6/osfmk/kern/
H A Dexclaves_resource.c932 conclave->c_request = CONCLAVE_R_NONE; in exclaves_conclave_init()
1005 assert3u(conclave->c_request, ==, CONCLAVE_R_NONE); in exclaves_conclave_detach()
1102 conclave->c_request |= CONCLAVE_R_LAUNCH_REQUESTED; in exclaves_conclave_launch()
1139 if (conclave->c_request & CONCLAVE_R_LAUNCH_REQUESTED) { in exclaves_update_state_machine_locked()
1140 conclave->c_request &= ~CONCLAVE_R_LAUNCH_REQUESTED; in exclaves_update_state_machine_locked()
1149 } else if (conclave->c_request & CONCLAVE_R_SUSPEND_REQUESTED) { in exclaves_update_state_machine_locked()
1159 conclave->c_request &= ~CONCLAVE_R_SUSPEND_REQUESTED; in exclaves_update_state_machine_locked()
1178 } else if (conclave->c_request & CONCLAVE_R_STOP_REQUESTED) { in exclaves_update_state_machine_locked()
1179 conclave->c_request &= ~CONCLAVE_R_STOP_REQUESTED; in exclaves_update_state_machine_locked()
1263 conclave->c_request |= CONCLAVE_R_STOP_REQUESTED; in exclaves_conclave_stop()
[all …]
H A Dexclaves_resource.h121 conclave_request_t c_request; member