Searched refs:state_handlers (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscic_sds_remote_node_context.h296 SCIC_SDS_REMOTE_NODE_CONTEXT_HANDLERS * state_handlers; member in struct:SCIC_SDS_REMOTE_NODE_CONTEXT
345 ((rnc)->state_handlers->event_handler(rnc, event_code))
348 ((rnc)->state_handlers->resume_handler(rnc, callback, parameter))
351 ((rnc)->state_handlers->suspend_handler(rnc, suspend_type, callback, parameter))
354 ((rnc)->state_handlers->destruct_handler(rnc, callback, parameter))
357 ((rnc)->state_handlers->start_io_handler(rnc, request))
360 ((rnc)->state_handlers->start_task_handler(rnc, task))
H A Dsci_base_state_machine.h77 (object)->state_handlers = &(table)[(state)]
H A Dscif_sas_remote_device_states.c144 = fw_device->state_handlers->parent.destruct_handler(
149 fw_device->domain->state_handlers->device_stop_complete_handler(
198 fw_device->state_handlers->parent.fail_handler(&fw_device->parent);
318 fw_device->state_handlers->stop_complete_handler(
H A Dscif_sas_remote_device.c229 status = fw_device->state_handlers->parent.start_handler(
309 status = fw_device->state_handlers->parent.start_handler(
344 fw_device->domain->state_handlers->device_destruct_handler(
351 return fw_device->state_handlers->parent.destruct_handler(
396 fw_device->state_handlers->start_complete_handler(
419 fw_device->state_handlers->stop_complete_handler(
434 fw_device->state_handlers->ready_handler(fw_device);
448 fw_device->state_handlers->not_ready_handler(fw_device,reason_code);
H A Dscif_sas_controller.c158 return fw_controller->state_handlers->initialize_handler(
201 return fw_controller->state_handlers->
225 return fw_controller->state_handlers->
249 return fw_controller->state_handlers->
288 status = fw_controller->state_handlers->start_io_handler(
330 status = fw_controller->state_handlers->start_task_handler(
360 return fw_controller->state_handlers->complete_io_handler(
392 return fw_controller->state_handlers->complete_task_handler(
832 return fw_controller->state_handlers->continue_io_handler(
953 status = fw_controller->state_handlers
[all...]
H A Dscif_sas_controller_state_handlers.c580 status = fw_device->domain->state_handlers->start_io_handler(
611 fw_device->domain->state_handlers->complete_io_handler(
618 fw_io->parent.state_handlers->complete_handler(io_request);
682 fw_io->parent.state_handlers->destruct_handler(&fw_io->parent.parent);
683 status = fw_device->domain->state_handlers->complete_io_handler(
772 fw_io->parent.state_handlers->destruct_handler(&fw_io->parent.parent);
773 status = fw_device->domain->state_handlers->complete_high_priority_io_handler(
887 status = fw_device->domain->state_handlers->start_task_handler(
918 fw_task->parent.state_handlers->start_handler(&fw_task->parent.parent);
926 fw_device->domain->state_handlers
[all...]
H A Dscif_sas_request.h131 SCI_BASE_REQUEST_STATE_HANDLER_T * state_handlers; member in struct:SCIF_SAS_REQUEST
H A Dscic_sds_stp_remote_device.c170 status = this_device->owning_port->state_handlers->start_io_handler(
183 status = this_request->state_handlers->parent.start_handler(request);
254 status = this_device->owning_port->state_handlers->start_io_handler(
267 status = io_request->state_handlers->parent.start_handler(request);
351 status = this_device->owning_port->state_handlers->start_io_handler(
363 status = io_request->state_handlers->parent.start_handler(request);
689 this_device->working_request->state_handlers->parent.complete_handler,
H A Dscic_sds_remote_device.c347 return this_device->state_handlers->parent.destruct_handler(&this_device->parent);
425 return this_device->state_handlers->parent.start_handler(&this_device->parent);
447 return this_device->state_handlers->parent.stop_handler(&this_device->parent);
474 return this_device->state_handlers->parent.reset_handler(&this_device->parent);
501 return this_device->state_handlers->parent.reset_complete_handler(&this_device->parent);
752 return this_device->state_handlers->suspend_handler(this_device, suspend_type);
767 return this_device->state_handlers->resume_handler(this_device);
784 return this_device->state_handlers->frame_handler(this_device, frame_index);
801 return this_device->state_handlers->event_handler(this_device, event_code);
820 return this_device->state_handlers
[all...]
H A Dscic_sds_phy.h270 struct SCIC_SDS_PHY_STATE_HANDLER *state_handlers; member in struct:SCIC_SDS_PHY
371 ((phy)->state_handlers = (handlers))
H A Dscif_sas_domain_state_handlers.c226 status = fw_device->state_handlers->parent.start_io_handler(
280 return fw_device->state_handlers->parent.complete_io_handler(
359 status = fw_device->state_handlers->parent.start_task_handler(
413 return fw_device->state_handlers->parent.complete_task_handler(
457 status = fw_device->state_handlers->start_high_priority_io_handler(
541 return fw_device->state_handlers->complete_high_priority_io_handler(
821 status = fw_device->state_handlers->start_high_priority_io_handler(
941 return fw_device->state_handlers->complete_high_priority_io_handler(
H A Dscic_sds_request.h238 struct SCIC_SDS_IO_REQUEST_STATE_HANDLER *state_handlers; member in struct:SCIC_SDS_REQUEST
365 ((a_request)->state_handlers->parent.complete_handler(&(a_request)->parent))
384 this_request->state_handlers->tc_completion_handler(this_request, completion_code); \
H A Dscif_sas_remote_device_ready_substate_handlers.c219 return (fw_device->state_handlers->parent.stop_handler(&fw_device->parent));
280 status = fw_io->parent.state_handlers->start_handler(&fw_io->parent.parent);
542 return fw_io->parent.state_handlers->start_handler(&fw_io->parent.parent);
H A Dscif_sas_controller.h119 SCI_BASE_CONTROLLER_STATE_HANDLER_T * state_handlers; member in struct:SCIF_SAS_CONTROLLER
H A Dscif_sas_domain.h118 SCI_BASE_DOMAIN_STATE_HANDLER_T * state_handlers; member in struct:SCIF_SAS_DOMAIN
H A Dscif_sas_internal_io_request.c228 fw_request->state_handlers->abort_handler(&fw_request->parent);
H A Dscic_sds_port.h186 struct SCIC_SDS_PORT_STATE_HANDLER *state_handlers; member in struct:SCIC_SDS_PORT
286 ((this_port)->state_handlers = (handlers))
H A Dscic_sds_remote_device.h294 struct SCIC_SDS_REMOTE_DEVICE_STATE_HANDLER *state_handlers; member in struct:SCIC_SDS_REMOTE_DEVICE
398 ((this_device)->state_handlers = (handlers))
H A Dscic_sds_controller.c1514 state_handlers->parent.stop_handler(&this_controller->port_table[index].parent);
3230 if (this_controller->state_handlers->link_up_handler != NULL)
3232 this_controller->state_handlers->link_up_handler(
3261 if (this_controller->state_handlers->link_down_handler != NULL)
3263 this_controller->state_handlers->link_down_handler(
3291 if (this_controller->state_handlers->remote_device_started_handler != NULL)
3293 this_controller->state_handlers->remote_device_started_handler(
3352 if (this_controller->state_handlers->remote_device_stopped_handler != NULL)
3354 this_controller->state_handlers->remote_device_stopped_handler(
3925 if (this_controller->state_handlers
[all...]
H A Dscic_sds_smp_remote_device.c97 status = this_device->owning_port->state_handlers->start_io_handler(
H A Dscif_sas_remote_device.h205 SCIF_SAS_REMOTE_DEVICE_STATE_HANDLER_T * state_handlers; member in struct:SCIF_SAS_REMOTE_DEVICE
H A Dscic_sds_controller.h185 struct SCIC_SDS_CONTROLLER_STATE_HANDLER *state_handlers; member in struct:SCIC_SDS_CONTROLLER
479 ((this_controller)->state_handlers = (handlers))
H A Dscif_sas_stp_io_request.c382 fw_io->parent.state_handlers = &stp_io_request_constructed_handlers;
397 fw_io->parent.state_handlers = &stp_io_request_constructed_handlers;
H A Dscif_sas_domain.c249 op_status = fw_domain->state_handlers->discover_handler(
312 fw_domain->state_handlers->port_ready_handler(&fw_domain->parent);
343 fw_domain->state_handlers->port_not_ready_handler(
632 fw_request->state_handlers->abort_handler(&fw_request->parent);
665 request->state_handlers->abort_handler(&request->parent);
801 fw_domain->state_handlers->device_start_complete_handler(
H A Dscic_sds_port.c388 return this_port->state_handlers->parent.add_phy_handler(
411 return this_port->state_handlers->parent.remove_phy_handler(
1009 return this_port->state_handlers->parent.reset_handler(
1277 this_port->state_handlers->link_up_handler(this_port, the_phy);
1292 this_port->state_handlers->link_down_handler(this_port, the_phy);
1310 return this_port->state_handlers->start_io_handler(
1329 return this_port->state_handlers->complete_io_handler(

Completed in 167 milliseconds

12