Lines Matching defs:smp
98 csio_set_state(void *smp, void *state)
100 ((struct csio_sm *)smp)->sm_state = state;
104 csio_init_state(struct csio_sm *smp, void *state)
106 csio_set_state(smp, state);
110 csio_post_event(void *smp, uint32_t evt)
112 ((struct csio_sm *)smp)->sm_state(smp, evt);
116 csio_get_state(void *smp)
118 return ((struct csio_sm *)smp)->sm_state;
122 csio_match_state(void *smp, void *state)
124 return (csio_get_state(smp) == (csio_sm_state_t)state);