Lines Matching refs:ev
37 static void port_event_handler_proc(const struct uevent* ev, void* port_ctx);
38 static void chan_event_handler_proc(const struct uevent* ev, void* chan_ctx);
131 static void chan_event_handler_proc(const struct uevent* ev, void* chan_ctx) { in chan_event_handler_proc() argument
136 assert(ev->handle == chan->handle); in chan_event_handler_proc()
138 tipc_handle_chan_errors(ev); in chan_event_handler_proc()
142 if (ev->event & IPC_HANDLE_POLL_MSG) { in chan_event_handler_proc()
148 ev->handle); in chan_event_handler_proc()
155 if (ev->event & IPC_HANDLE_POLL_HUP) { in chan_event_handler_proc()
168 if (ev->event & IPC_HANDLE_POLL_SEND_UNBLOCKED) { in chan_event_handler_proc()
175 ev->handle); in chan_event_handler_proc()
180 TLOGE("send-unblocking not handled for channel %d\n", ev->handle); in chan_event_handler_proc()
295 static void port_event_handler_proc(const struct uevent* ev, void* ctx) { in port_event_handler_proc() argument
296 tipc_handle_port_errors(ev); in port_event_handler_proc()
298 if (ev->event & IPC_HANDLE_POLL_READY) { in port_event_handler_proc()
300 assert(port->handle == ev->handle); in port_event_handler_proc()