Lines Matching refs:epd
154 int scif_close(scif_epd_t epd) in scif_close() argument
156 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_close()
184 scif_unregister_all_windows(epd); in scif_close()
206 scif_unregister_all_windows(epd); in scif_close()
309 int __scif_flush(scif_epd_t epd) in __scif_flush() argument
311 struct scif_endpt *ep = (struct scif_endpt *)epd; in __scif_flush()
328 int scif_bind(scif_epd_t epd, u16 pn) in scif_bind() argument
330 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_bind()
385 int scif_listen(scif_epd_t epd, int backlog) in scif_listen() argument
387 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_listen()
590 int __scif_connect(scif_epd_t epd, struct scif_port_id *dst, bool non_block) in __scif_connect() argument
592 struct scif_endpt *ep = (struct scif_endpt *)epd; in __scif_connect()
710 int scif_connect(scif_epd_t epd, struct scif_port_id *dst) in scif_connect() argument
712 return __scif_connect(epd, dst, false); in scif_connect()
737 int scif_accept(scif_epd_t epd, struct scif_port_id *peer, in scif_accept() argument
740 struct scif_endpt *lep = (struct scif_endpt *)epd; in scif_accept()
923 static inline int scif_msg_param_check(scif_epd_t epd, int len, int flags) in scif_msg_param_check() argument
936 static int _scif_send(scif_epd_t epd, void *msg, int len, int flags) in _scif_send() argument
938 struct scif_endpt *ep = (struct scif_endpt *)epd; in _scif_send()
998 static int _scif_recv(scif_epd_t epd, void *msg, int len, int flags) in _scif_recv() argument
1001 struct scif_endpt *ep = (struct scif_endpt *)epd; in _scif_recv()
1094 int scif_user_send(scif_epd_t epd, void __user *msg, int len, int flags) in scif_user_send() argument
1096 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_user_send()
1108 err = scif_msg_param_check(epd, len, flags); in scif_user_send()
1130 err = _scif_send(epd, tmp, loop_len, flags); in scif_user_send()
1155 int scif_user_recv(scif_epd_t epd, void __user *msg, int len, int flags) in scif_user_recv() argument
1157 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_user_recv()
1169 err = scif_msg_param_check(epd, len, flags); in scif_user_recv()
1187 err = _scif_recv(epd, tmp, loop_len, flags); in scif_user_recv()
1216 int scif_send(scif_epd_t epd, void *msg, int len, int flags) in scif_send() argument
1218 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_send()
1226 ret = scif_msg_param_check(epd, len, flags); in scif_send()
1240 ret = _scif_send(epd, msg, len, flags); in scif_send()
1258 int scif_recv(scif_epd_t epd, void *msg, int len, int flags) in scif_recv() argument
1260 struct scif_endpt *ep = (struct scif_endpt *)epd; in scif_recv()
1268 ret = scif_msg_param_check(epd, len, flags); in scif_recv()
1280 ret = _scif_recv(epd, msg, len, flags); in scif_recv()
1392 mask = __scif_pollfd(ufds[i].epd->anon, in scif_poll()
1393 pt, ufds[i].epd); in scif_poll()