Lines Matching full:message

71 /* wait for a message with timers disabled (e.g. pass a timer-check trigger into tcpip_thread) */
74 /* wait for a message, timeouts are processed while waiting */
77 * Wait (forever) for a message to arrive in an mbox.
80 * @param mbox the mbox to fetch the message from
81 * @param msg the place to store the message
99 /* We try again to fetch a message from the mbox. */ in tcpip_timeouts_mbox_fetch()
108 before a message could be fetched. */ in tcpip_timeouts_mbox_fetch()
110 /* We try again to fetch a message from the mbox. */ in tcpip_timeouts_mbox_fetch()
119 * thread using message boxes.
141 /* wait for a message, timeouts are processed while waiting */ in tcpip_thread()
144 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: invalid message: NULL\n")); in tcpip_thread()
145 LWIP_ASSERT("tcpip_thread: invalid message", 0); in tcpip_thread()
161 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API message %p\n", (void *)msg)); in tcpip_thread_handle_msg()
165 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API CALL message %p\n", (void *)msg)); in tcpip_thread_handle_msg()
206 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: invalid message: %d\n", msg->type)); in tcpip_thread_handle_msg()
207 LWIP_ASSERT("tcpip_thread: invalid message", 0); in tcpip_thread_handle_msg()
425 * Sends a message to TCPIP thread to call a function. Caller thread blocks on
516 * Allocate a structure for a static callback message and initialize it.
517 * The message has a special type such that lwIP never frees it.
519 * e.g. the message is allocated once and posted several times from an IRQ
545 * Free a callback message allocated by tcpip_callbackmsg_new().
547 * @param msg the message to free
559 * Try to post a callback-message to the tcpip_thread tcpip_mbox.
561 * @param msg pointer to the message to post
575 * Try to post a callback-message to the tcpip_thread mbox.
579 * @param msg pointer to the message to post