Lines Matching refs:event

34 static void state_s_disconnect   (struct iriap_cb *self, IRIAP_EVENT event,
36 static void state_s_connecting (struct iriap_cb *self, IRIAP_EVENT event,
38 static void state_s_call (struct iriap_cb *self, IRIAP_EVENT event,
41 static void state_s_make_call (struct iriap_cb *self, IRIAP_EVENT event,
43 static void state_s_calling (struct iriap_cb *self, IRIAP_EVENT event,
45 static void state_s_outstanding (struct iriap_cb *self, IRIAP_EVENT event,
47 static void state_s_replying (struct iriap_cb *self, IRIAP_EVENT event,
49 static void state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event,
51 static void state_s_wait_active (struct iriap_cb *self, IRIAP_EVENT event,
54 static void state_r_disconnect (struct iriap_cb *self, IRIAP_EVENT event,
56 static void state_r_call (struct iriap_cb *self, IRIAP_EVENT event,
58 static void state_r_waiting (struct iriap_cb *self, IRIAP_EVENT event,
60 static void state_r_wait_active (struct iriap_cb *self, IRIAP_EVENT event,
62 static void state_r_receiving (struct iriap_cb *self, IRIAP_EVENT event,
64 static void state_r_execute (struct iriap_cb *self, IRIAP_EVENT event,
66 static void state_r_returning (struct iriap_cb *self, IRIAP_EVENT event,
69 static void (*iriap_state[])(struct iriap_cb *self, IRIAP_EVENT event,
128 void iriap_do_client_event(struct iriap_cb *self, IRIAP_EVENT event, in iriap_do_client_event() argument
134 (*iriap_state[ self->client_state]) (self, event, skb); in iriap_do_client_event()
137 void iriap_do_call_event(struct iriap_cb *self, IRIAP_EVENT event, in iriap_do_call_event() argument
143 (*iriap_state[ self->call_state]) (self, event, skb); in iriap_do_call_event()
146 void iriap_do_server_event(struct iriap_cb *self, IRIAP_EVENT event, in iriap_do_server_event() argument
152 (*iriap_state[ self->server_state]) (self, event, skb); in iriap_do_server_event()
155 void iriap_do_r_connect_event(struct iriap_cb *self, IRIAP_EVENT event, in iriap_do_r_connect_event() argument
161 (*iriap_state[ self->r_connect_state]) (self, event, skb); in iriap_do_r_connect_event()
171 static void state_s_disconnect(struct iriap_cb *self, IRIAP_EVENT event, in state_s_disconnect() argument
177 switch (event) { in state_s_disconnect()
190 pr_debug("%s(), Unknown event %d\n", __func__, event); in state_s_disconnect()
201 static void state_s_connecting(struct iriap_cb *self, IRIAP_EVENT event, in state_s_connecting() argument
207 switch (event) { in state_s_connecting()
222 pr_debug("%s(), Unknown event %d\n", __func__, event); in state_s_connecting()
234 static void state_s_call(struct iriap_cb *self, IRIAP_EVENT event, in state_s_call() argument
239 switch (event) { in state_s_call()
246 pr_debug("state_s_call: Unknown event %d\n", event); in state_s_call()
257 static void state_s_make_call(struct iriap_cb *self, IRIAP_EVENT event, in state_s_make_call() argument
264 switch (event) { in state_s_make_call()
274 pr_debug("%s(), Unknown event %d\n", __func__, event); in state_s_make_call()
285 static void state_s_calling(struct iriap_cb *self, IRIAP_EVENT event, in state_s_calling() argument
297 static void state_s_outstanding(struct iriap_cb *self, IRIAP_EVENT event, in state_s_outstanding() argument
302 switch (event) { in state_s_outstanding()
310 pr_debug("%s(), Unknown event %d\n", __func__, event); in state_s_outstanding()
320 static void state_s_replying(struct iriap_cb *self, IRIAP_EVENT event, in state_s_replying() argument
332 static void state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event, in state_s_wait_for_call() argument
345 static void state_s_wait_active(struct iriap_cb *self, IRIAP_EVENT event, in state_s_wait_active() argument
363 static void state_r_disconnect(struct iriap_cb *self, IRIAP_EVENT event, in state_r_disconnect() argument
368 switch (event) { in state_r_disconnect()
389 pr_debug("%s(), unknown event %d\n", __func__, event); in state_r_disconnect()
397 static void state_r_call(struct iriap_cb *self, IRIAP_EVENT event, in state_r_call() argument
400 switch (event) { in state_r_call()
419 static void state_r_waiting(struct iriap_cb *self, IRIAP_EVENT event, in state_r_waiting() argument
425 static void state_r_wait_active(struct iriap_cb *self, IRIAP_EVENT event, in state_r_wait_active() argument
437 static void state_r_receiving(struct iriap_cb *self, IRIAP_EVENT event, in state_r_receiving() argument
440 switch (event) { in state_r_receiving()
458 static void state_r_execute(struct iriap_cb *self, IRIAP_EVENT event, in state_r_execute() argument
465 switch (event) { in state_r_execute()
485 static void state_r_returning(struct iriap_cb *self, IRIAP_EVENT event, in state_r_returning() argument
488 pr_debug("%s(), event=%d\n", __func__, event); in state_r_returning()
490 switch (event) { in state_r_returning()