Lines Matching defs:function

158  * This is in its own function for access by tests only.
167 msg->msg.api_msg.function(msg->msg.api_msg.msg);
171 msg->msg.api_call.arg->err = msg->msg.api_call.function(msg->msg.api_call.arg);
201 msg->msg.cb.function(msg->msg.cb.ctx);
207 msg->msg.cb.function(msg->msg.cb.ctx);
304 * @param input_fn input function to call
365 * Call a specific function in the thread context of
367 * A function called in that way may access lwIP core code
372 * @param function the function to call
374 * @return ERR_OK if the function was called, another err_t if not
379 tcpip_callback(tcpip_callback_fn function, void *ctx)
391 msg->msg.cb.function = function;
400 * Call a specific function in the thread context of
402 * A function called in that way may access lwIP core code
408 * @param function the function to call
410 * @return ERR_OK if the function was called, another err_t if not
415 tcpip_try_callback(tcpip_callback_fn function, void *ctx)
427 msg->msg.cb.function = function;
442 * @param h function to be called on timeout
443 * @param arg argument to pass to timeout function h
469 * @param h function to be called on timeout
470 * @param arg argument to pass to timeout function h
495 * Sends a message to TCPIP thread to call a function. Caller thread blocks on
501 * @param fn function to be called from TCPIP thread
502 * @param apimsg argument to API function
504 * @return ERR_OK if the function was called, another err_t if not
526 TCPIP_MSG_VAR_REF(msg).msg.api_msg.function = fn;
536 * Synchronously calls function in TCPIP thread and waits for its completion.
572 TCPIP_MSG_VAR_REF(msg).msg.api_call.function = fn;
599 * @param function the function to call
600 * @param ctx parameter passed to function
607 tcpip_callbackmsg_new(tcpip_callback_fn function, void *ctx)
614 msg->msg.cb.function = function;
674 * @param initfunc a function to call when tcpip_thread is running and finished initializing
697 * Simple callback function used with tcpip_callback to free a pbuf
710 * A simple wrapper function that allows you to free a pbuf from interrupt context.
722 * A simple wrapper function that allows you to free heap memory from