Lines Matching defs:call
304 * @param input_fn input function to call
344 * ethernet_input or ip_input. Don't call directly, pass to netif_add()
345 * and call netif->input().
372 * @param function the function to call
408 * @param function the function to call
439 * call sys_timeout in tcpip_thread
467 * call sys_untimeout in tcpip_thread
495 * Sends a message to TCPIP thread to call a function. Caller thread blocks on
539 * If not, a semaphore is created and destroyed on every call which is usually
541 * @param fn Function to call
542 * @param call Call parameters
546 tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call)
554 err = fn(call);
561 err_t err = sys_sem_new(&call->sem, 0);
571 TCPIP_MSG_VAR_REF(msg).msg.api_call.arg = call;
576 TCPIP_MSG_VAR_REF(msg).msg.api_call.sem = &call->sem;
583 sys_sem_free(&call->sem);
586 return call->err;
599 * @param function the function to call
674 * @param initfunc a function to call when tcpip_thread is running and finished initializing