Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/api/
Dapi_msg.c381 if (sys_mbox_valid(&conn->acceptmbox)) {
383 sys_mbox_trypost(&conn->acceptmbox, NULL);
439 if (!sys_mbox_valid(&conn->acceptmbox)) {
456 if (sys_mbox_trypost(&conn->acceptmbox, newconn) != ERR_OK) {
615 sys_mbox_set_invalid(&conn->acceptmbox);
652 !sys_mbox_valid(&conn->acceptmbox));
704 if (sys_mbox_valid(&conn->acceptmbox)) {
705 while (sys_mbox_tryfetch(&conn->acceptmbox, &mem) != SYS_MBOX_EMPTY) {
720 sys_mbox_free(&conn->acceptmbox);
721 sys_mbox_set_invalid(&conn->acceptmbox);
[all …]
Dapi_lib.c83 LWIP_ASSERT("conn->acceptmbox shouldn't exist", !sys_mbox_valid(&conn->acceptmbox)); in netconn_new_with_proto_and_callback()
289 …LWIP_ERROR("netconn_accept: invalid acceptmbox", sys_mbox_valid(&conn->acceptmbox), return ERR_A… in netconn_accept()
299 …if (sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, conn->recv_timeout) == SYS_ARCH_TIME… in netconn_accept()
304 sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, 0); in netconn_accept()
/external/syslinux/core/lwip/src/include/lwip/
Dapi.h156 sys_mbox_t acceptmbox; member
/external/syslinux/core/lwip/
DCHANGELOG437 triggered by bug #29345; don't allocate acceptmbox if LWIP_TCP is disabled
623 window = 0) by correctly draining recvmbox/acceptmbox
1241 netconn::acceptmbox. Port maintainers, you can decide to just add this new
1849 netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox.
2100 * api_lib.c, sockets.c: Fixed bug #5958 for netconn_listen (acceptmbox only