Lines Matching refs:epd

163 int scif_close(scif_epd_t epd)  in scif_close()  argument
165 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_close()
192 scif_unregister_all_windows(epd); in scif_close()
214 scif_unregister_all_windows(epd); in scif_close()
317 int __scif_flush(scif_epd_t epd) in __scif_flush() argument
319 struct scif_endpt *ep = (struct scif_endpt *)epd; in __scif_flush()
336 int scif_bind(scif_epd_t epd, u16 pn) in scif_bind() argument
338 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_bind()
394 int scif_listen(scif_epd_t epd, int backlog) in scif_listen() argument
396 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_listen()
599 int __scif_connect(scif_epd_t epd, struct scif_port_id *dst, bool non_block) in __scif_connect() argument
601 struct scif_endpt *ep = (struct scif_endpt *)epd; in __scif_connect()
720 int scif_connect(scif_epd_t epd, struct scif_port_id *dst) in scif_connect() argument
722 return __scif_connect(epd, dst, false); in scif_connect()
747 int scif_accept(scif_epd_t epd, struct scif_port_id *peer, in scif_accept() argument
750 struct scif_endpt *lep = (struct scif_endpt *)epd; in scif_accept()
933 static inline int scif_msg_param_check(scif_epd_t epd, int len, int flags) in scif_msg_param_check() argument
946 static int _scif_send(scif_epd_t epd, void *msg, int len, int flags) in _scif_send() argument
948 struct scif_endpt *ep = (struct scif_endpt *)epd; in _scif_send()
1008 static int _scif_recv(scif_epd_t epd, void *msg, int len, int flags) in _scif_recv() argument
1011 struct scif_endpt *ep = (struct scif_endpt *)epd; in _scif_recv()
1104 int scif_user_send(scif_epd_t epd, void __user *msg, int len, int flags) in scif_user_send() argument
1106 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_user_send()
1118 err = scif_msg_param_check(epd, len, flags); in scif_user_send()
1140 err = _scif_send(epd, tmp, loop_len, flags); in scif_user_send()
1165 int scif_user_recv(scif_epd_t epd, void __user *msg, int len, int flags) in scif_user_recv() argument
1167 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_user_recv()
1179 err = scif_msg_param_check(epd, len, flags); in scif_user_recv()
1197 err = _scif_recv(epd, tmp, loop_len, flags); in scif_user_recv()
1226 int scif_send(scif_epd_t epd, void *msg, int len, int flags) in scif_send() argument
1228 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_send()
1236 ret = scif_msg_param_check(epd, len, flags); in scif_send()
1250 ret = _scif_send(epd, msg, len, flags); in scif_send()
1268 int scif_recv(scif_epd_t epd, void *msg, int len, int flags) in scif_recv() argument
1270 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_recv()
1278 ret = scif_msg_param_check(epd, len, flags); in scif_recv()
1290 ret = _scif_recv(epd, msg, len, flags); in scif_recv()
1401 mask = __scif_pollfd(ufds[i].epd->anon, in scif_poll()
1402 pt, ufds[i].epd); in scif_poll()