Lines Matching defs:conn

95 #define NETCONN_RECVMBOX_WAITABLE(conn) (sys_mbox_valid(&(conn)->recvmbox) && (((conn)->flags & NET…  argument
96 #define NETCONN_ACCEPTMBOX_WAITABLE(conn) (sys_mbox_valid(&(conn)->acceptmbox) && (((conn)->flags &… argument
97 #define NETCONN_MBOX_WAITING_INC(conn) SYS_ARCH_INC(conn->mbox_threads_waiting, 1) argument
98 #define NETCONN_MBOX_WAITING_DEC(conn) SYS_ARCH_DEC(conn->mbox_threads_waiting, 1) argument
100 #define NETCONN_RECVMBOX_WAITABLE(conn) sys_mbox_valid(&(conn)->recvmbox) argument
101 #define NETCONN_ACCEPTMBOX_WAITABLE(conn) (sys_mbox_valid(&(conn)->acceptmbox) && (((conn)->flags &… argument
102 #define NETCONN_MBOX_WAITING_INC(conn) argument
103 #define NETCONN_MBOX_WAITING_DEC(conn) argument
151 struct netconn *conn; in netconn_new_with_proto_and_callback() local
192 netconn_prepare_delete(struct netconn *conn) in netconn_prepare_delete()
233 netconn_delete(struct netconn *conn) in netconn_delete()
269 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local) in netconn_getaddr()
307 netconn_bind(struct netconn *conn, const ip_addr_t *addr, u16_t port) in netconn_bind()
351 netconn_bind_if(struct netconn *conn, u8_t if_idx) in netconn_bind_if()
377 netconn_connect(struct netconn *conn, const ip_addr_t *addr, u16_t port) in netconn_connect()
409 netconn_disconnect(struct netconn *conn) in netconn_disconnect()
434 netconn_listen_with_backlog(struct netconn *conn, u8_t backlog) in netconn_listen_with_backlog()
471 netconn_accept(struct netconn *conn, struct netconn **new_conn) in netconn_accept()
579 netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags) in netconn_recv_data()
677 netconn_tcp_recvd_msg(struct netconn *conn, size_t len, struct api_msg *msg) in netconn_tcp_recvd_msg()
689 netconn_tcp_recvd(struct netconn *conn, size_t len) in netconn_tcp_recvd()
703 netconn_recv_data_tcp(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags) in netconn_recv_data_tcp()
782 netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf) in netconn_recv_tcp_pbuf()
803 netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags) in netconn_recv_tcp_pbuf_flags()
822 netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_buf) in netconn_recv_udp_raw_netbuf()
842 netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags) in netconn_recv_udp_raw_netbuf_flags()
860 netconn_recv(struct netconn *conn, struct netbuf **new_buf) in netconn_recv()
922 netconn_sendto(struct netconn *conn, struct netbuf *buf, const ip_addr_t *addr, u16_t port) in netconn_sendto()
941 netconn_send(struct netconn *conn, struct netbuf *buf) in netconn_send()
974 netconn_write_partly(struct netconn *conn, const void *dataptr, size_t size, in netconn_write_partly()
997 netconn_write_vectors_partly(struct netconn *conn, struct netvector *vectors, u16_t vectorcnt, in netconn_write_vectors_partly()
1089 netconn_close_shutdown(struct netconn *conn, u8_t how) in netconn_close_shutdown()
1125 netconn_close(struct netconn *conn) in netconn_close()
1139 netconn_err(struct netconn *conn) in netconn_err()
1163 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown()
1181 netconn_join_leave_group(struct netconn *conn, in netconn_join_leave_group()
1223 netconn_join_leave_group_netif(struct netconn *conn, in netconn_join_leave_group_netif()