Lines Matching refs:struct
16 @@ -763,7 +763,7 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)
20 - write_lwip_over((struct lwip_sock*)arg, 1);
21 + write_lwip_over((struct lwip_sock*)arg);
29 @@ -231,6 +231,9 @@ struct pbuf {
35 + struct pbuf *last;
43 @@ -93,17 +93,30 @@ struct lwip_sock {
47 - struct pbuf *send_lastdata;
50 - struct pbuf *recv_lastdata __rte_cache_aligned; /* unread data in one pbuf */
51 - struct list_node recv_list __rte_cache_aligned;
52 - struct list_node event_list __rte_cache_aligned;
53 - struct list_node send_list __rte_cache_aligned;
57 + struct pbuf *recv_lastdata; /* unread data in one pbuf */
62 + struct list_node event_list;
71 + struct list_node recv_list;
72 + struct list_node send_list;
73 + struct pbuf *send_lastdata;
74 + struct pbuf *send_pre_del;
80 struct wakeup_poll *wakeup;
82 struct lwip_sock *listen_next; /* listenfd list */
83 @@ -131,7 +144,7 @@ extern ssize_t read_lwip_data(struct lwip_sock *sock, int32_t flags, u8_t apifla
84 …extern struct pbuf *write_lwip_data(struct lwip_sock *sock, uint16_t remain_size, uint8_t *apiflag…
87 -extern void write_lwip_over(struct lwip_sock *sock, uint32_t n);
88 +extern void write_lwip_over(struct lwip_sock *sock);
91 struct lwip_sock *get_socket(int s);