Lines Matching refs:struct
21 @@ -655,7 +655,11 @@ netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags)
26 + len = ((struct pbuf *)buf)->tot_len;
28 len = netbuf_len((struct netbuf *)buf);
33 @@ -827,6 +831,16 @@ netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_buf)
39 +netconn_recv_udp_raw_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags)
54 @@ -253,6 +253,14 @@ recv_udp(void *arg, struct udp_pcb *pcb, struct pbuf *p,
66 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
69 @@ -277,17 +285,18 @@ recv_udp(void *arg, struct udp_pcb *pcb, struct pbuf *p,
95 @@ -1179,7 +1179,7 @@ lwip_recvfrom_udp_raw(struct lwip_sock *sock, int flags, struct msghdr *msg, …
104 @@ -1267,7 +1267,7 @@ lwip_recvfrom_udp_raw(struct lwip_sock *sock, int flags, struct msghdr *msg, …
113 @@ -1278,7 +1278,7 @@ lwip_recvfrom_udp_raw(struct lwip_sock *sock, int flags, struct msghdr *msg, …
126 @@ -599,6 +599,7 @@ udp_sendto_chksum(struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *dst_ip,
133 struct pbuf *udp_pbuf = write_lwip_data((struct lwip_sock *)(p->payload), p->tot_len, &apiflags);
134 @@ -611,14 +612,21 @@ udp_sendto_chksum(struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *dst_i…
160 @@ -338,6 +338,9 @@ err_t netconn_accept(struct netconn *conn, struct netconn **new_conn);
161 err_t netconn_recv(struct netconn *conn, struct netbuf **new_buf);
162 err_t netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_buf);
163 …err_t netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apif…
165 +err_t netconn_recv_udp_raw_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags…
167 err_t netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf);
168 err_t netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags);
169 err_t netconn_tcp_recvd(struct netconn *conn, size_t len);
185 @@ -238,8 +240,10 @@ struct pbuf {
186 struct pbuf *last;
188 struct tcp_pcb *pcb;
200 @@ -330,7 +330,7 @@ struct linger {
209 @@ -341,11 +341,11 @@ struct linger {
223 @@ -354,7 +354,7 @@ struct linger {
230 typedef struct ip_mreq {
231 struct in_addr imr_multiaddr; /* IP multicast address of group */