Home
last modified time | relevance | path

Searched refs:req_state (Results 1 – 7 of 7) sorted by relevance

/titanic_50/usr/src/uts/i86pc/os/cpupm/
H A Dpwrnow.c114 pwrnow_pstate_transition(uint32_t req_state) in pwrnow_pstate_transition() argument
123 req_pstate += req_state; in pwrnow_pstate_transition()
136 mach_state->ms_pstate.cma_state.pstate, req_state); in pwrnow_pstate_transition()
138 mach_state->ms_pstate.cma_state.pstate = req_state; in pwrnow_pstate_transition()
143 pwrnow_power(cpuset_t set, uint32_t req_state) in pwrnow_power() argument
152 pwrnow_pstate_transition(req_state); in pwrnow_power()
156 xc_call((xc_arg_t)req_state, NULL, NULL, in pwrnow_power()
H A Dspeedstep.c130 speedstep_pstate_transition(uint32_t req_state) in speedstep_pstate_transition() argument
139 req_pstate += req_state; in speedstep_pstate_transition()
151 mach_state->ms_pstate.cma_state.pstate, req_state); in speedstep_pstate_transition()
153 mach_state->ms_pstate.cma_state.pstate = req_state; in speedstep_pstate_transition()
158 speedstep_power(cpuset_t set, uint32_t req_state) in speedstep_power() argument
167 speedstep_pstate_transition(req_state); in speedstep_power()
171 xc_call((xc_arg_t)req_state, NULL, NULL, CPUSET2BV(set), in speedstep_power()
H A Dturbo.c154 uint32_t cur_state, uint32_t req_state) in cpupm_record_turbo_info() argument
161 if (req_state == CPU_ACPI_P0) { in cpupm_record_turbo_info()
H A Dcpupm_throttle.c157 cpupm_tstate_transition(uint32_t req_state) in cpupm_tstate_transition() argument
168 req_tstate += req_state; in cpupm_tstate_transition()
/titanic_50/usr/src/lib/libc/port/aio/
H A Daio_alloc.c184 reqp->req_state = AIO_REQ_FREE; in _aio_req_alloc()
198 ASSERT(reqp->req_state == AIO_REQ_FREE); in _aio_req_alloc()
199 reqp->req_state = 0; in _aio_req_alloc()
212 ASSERT(reqp->req_state != AIO_REQ_FREE && in _aio_req_free()
213 reqp->req_state != AIO_REQ_DONEQ); in _aio_req_free()
215 reqp->req_state = AIO_REQ_FREE; in _aio_req_free()
H A Daio.c805 int ostate = reqp->req_state; in _aio_cancel_req()
823 reqp->req_state = AIO_REQ_CANCELED; in _aio_cancel_req()
842 reqp->req_state = AIO_REQ_CANCELED; in _aio_cancel_req()
914 reqp->req_state = AIO_REQ_QUEUED; in _aio_create_worker()
929 reqp->req_state = 0; in _aio_create_worker()
1071 ASSERT(reqp->req_state == AIO_REQ_INPROGRESS || in _aio_do_request()
1072 reqp->req_state == AIO_REQ_CANCELED); in _aio_do_request()
1179 if (reqp->req_state == AIO_REQ_CANCELED) { in _aio_do_request()
1216 if (reqp->req_state == AIO_REQ_CANCELED) { in _aio_finish_request()
1222 if (reqp->req_state == AIO_REQ_INPROGRESS) { in _aio_finish_request()
[all …]
/titanic_50/usr/src/lib/libc/inc/
H A Dasyncio.h133 char req_state; /* AIO_REQ_QUEUED, ... */ member