HomeSort by relevance Sort by last modified time
    Searched refs:acceptmbox (Results 1 - 3 of 3) sorted by null

  /external/syslinux/core/lwip/src/api/
api_msg.c 380 /* pass NULL-message to acceptmbox to wake up pending accept */
381 if (sys_mbox_valid(&conn->acceptmbox)) {
383 sys_mbox_trypost(&conn->acceptmbox, NULL);
427 * Allocates a new netconn and posts that to conn->acceptmbox.
439 if (!sys_mbox_valid(&conn->acceptmbox)) {
440 LWIP_DEBUGF(API_MSG_DEBUG, ("accept_function: acceptmbox already deleted\n"));
456 if (sys_mbox_trypost(&conn->acceptmbox, newconn) != ERR_OK) {
615 sys_mbox_set_invalid(&conn->acceptmbox);
651 LWIP_ASSERT("acceptmbox must be deallocated before calling this function",
652 !sys_mbox_valid(&conn->acceptmbox));
    [all...]
api_lib.c 83 LWIP_ASSERT("conn->acceptmbox shouldn't exist", !sys_mbox_valid(&conn->acceptmbox));
289 LWIP_ERROR("netconn_accept: invalid acceptmbox", sys_mbox_valid(&conn->acceptmbox), return ERR_ARG;);
294 waiting on acceptmbox forever! */
299 if (sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, conn->recv_timeout) == SYS_ARCH_TIMEOUT) {
304 sys_arch_mbox_fetch(&conn->acceptmbox, (void **)&newconn, 0);
  /external/syslinux/core/lwip/src/include/lwip/
api.h 156 sys_mbox_t acceptmbox; member in struct:netconn

Completed in 184 milliseconds