Home
last modified time | relevance | path

Searched refs:acceptmbox (Results 1 – 10 of 10) sorted by relevance

/third_party/lwip/
D0077-adpat-event-for-rtc-mode.patch50 - if (conn->acceptmbox != NULL && !sys_mbox_empty(conn->acceptmbox)) {
57 + if (conn->acceptmbox != NULL && !sys_mbox_empty(conn->acceptmbox)) {
D0031-refactor-add-event-limit-send-pkts-num.patch19 if (conn->acceptmbox != NULL && !sys_mbox_empty(conn->acceptmbox)) {
D0024-refactor-pkt-read-send-performance.patch50 /* pass error message to acceptmbox to wake up pending accept */
113 + if (conn->acceptmbox != NULL && !sys_mbox_empty(conn->acceptmbox)) {
D0073-lstack_lwip-external-api-start-with-do_lwip_-prefix.patch46 /* pass error message to acceptmbox to wake up pending accept */
D0016-lstack-support-mysql-mode.patch63 /* pass error message to acceptmbox to wake up pending accept */
64 if (NETCONN_MBOX_VALID(conn, &conn->acceptmbox)) {
D0053-cleancode-improve-lwipopts.h-readability.patch303 if (conn->acceptmbox != NULL && !sys_mbox_empty(conn->acceptmbox)) {
DCHANGELOG1935 triggered by bug #29345; don't allocate acceptmbox if LWIP_TCP is disabled
2121 window = 0) by correctly draining recvmbox/acceptmbox
2739 netconn::acceptmbox. Port maintainers, you can decide to just add this new
3347 netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox.
3598 * api_lib.c, sockets.c: Fixed bug #5958 for netconn_listen (acceptmbox only
/third_party/lwip/src/api/
Dapi_msg.c500 if (NETCONN_MBOX_VALID(conn, &conn->acceptmbox)) {
502 sys_mbox_trypost(&conn->acceptmbox, mbox_msg);
570 if (!NETCONN_MBOX_VALID(conn, &conn->acceptmbox)) {
577 if (sys_mbox_trypost(&conn->acceptmbox, lwip_netconn_err_to_msg(ERR_ABRT)) == ERR_OK) {
593 if (sys_mbox_trypost(&conn->acceptmbox, lwip_netconn_err_to_msg(ERR_ABRT)) == ERR_OK) {
605 if (sys_mbox_trypost(&conn->acceptmbox, newconn) != ERR_OK) {
805 sys_mbox_set_invalid(&conn->acceptmbox);
856 !sys_mbox_valid(&conn->acceptmbox));
912 if (sys_mbox_valid(&conn->acceptmbox)) {
913 while (sys_mbox_tryfetch(&conn->acceptmbox, &mem) != SYS_MBOX_EMPTY) {
[all …]
Dapi_lib.c96 #define NETCONN_ACCEPTMBOX_WAITABLE(conn) (sys_mbox_valid(&(conn)->acceptmbox) && (((conn)->flags &…
101 #define NETCONN_ACCEPTMBOX_WAITABLE(conn) (sys_mbox_valid(&(conn)->acceptmbox) && (((conn)->flags &…
166 LWIP_ASSERT("conn->acceptmbox shouldn't exist", !sys_mbox_valid(&conn->acceptmbox)); in netconn_new_with_proto_and_callback()
503 if (sys_arch_mbox_tryfetch(&conn->acceptmbox, &accept_ptr) == SYS_MBOX_EMPTY) { in netconn_accept()
510 … if (sys_arch_mbox_fetch(&conn->acceptmbox, &accept_ptr, conn->recv_timeout) == SYS_ARCH_TIMEOUT) { in netconn_accept()
516 sys_arch_mbox_fetch(&conn->acceptmbox, &accept_ptr, 0); in netconn_accept()
/third_party/lwip/src/include/lwip/
Dapi.h242 sys_mbox_t acceptmbox; member