Searched refs:call (Results 1 – 5 of 5) sorted by relevance
188 sync_func_call_t *call = (sync_func_call_t *)worker; in handle_sync_func_call() local189 call->rc = call->func(call->param); in handle_sync_func_call()190 xSemaphoreGive(call->sem); in handle_sync_func_call()197 sync_func_call_t call; in async_context_freertos_execute_sync() local198 call.worker.do_work = handle_sync_func_call; in async_context_freertos_execute_sync()199 call.func = func; in async_context_freertos_execute_sync()200 call.param = param; in async_context_freertos_execute_sync()201 call.sem = xSemaphoreCreateBinary(); in async_context_freertos_execute_sync()204 xSemaphoreTake(call.sem, portMAX_DELAY); in async_context_freertos_execute_sync()205 vSemaphoreDelete(call.sem); in async_context_freertos_execute_sync()[all …]
99 sync_func_call_t *call = (sync_func_call_t *)worker; in handle_sync_func_call() local100 call->rc = call->func(call->param); in handle_sync_func_call()101 sem_release(&call->sem); in handle_sync_func_call()143 sync_func_call_t call; in async_context_threadsafe_background_execute_sync() local144 call.worker.do_work = handle_sync_func_call; in async_context_threadsafe_background_execute_sync()145 call.func = func; in async_context_threadsafe_background_execute_sync()146 call.param = param; in async_context_threadsafe_background_execute_sync()147 sem_init(&call.sem, 0, 1); in async_context_threadsafe_background_execute_sync()149 async_context_set_work_pending(self_base, &call.worker); in async_context_threadsafe_background_execute_sync()150 sem_acquire_blocking(&call.sem); in async_context_threadsafe_background_execute_sync()[all …]
2 you use the lowel-level call-back/raw API.
6 ifeq ($(call is_warning_flag_supported,-Wmaybe-uninitialized),yes)
2337 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call2341 # So in most cases it will be better to enable call graphs for selected2342 # functions only using the \callgraph command. Disabling a call graph can be
Completed in 10 milliseconds