Home
last modified time | relevance | path

Searched refs:call (Results 1 – 5 of 5) sorted by relevance

/external/platform/pico/rp2_common/pico_async_context/
A Dasync_context_freertos.c188 sync_func_call_t *call = (sync_func_call_t *)worker; in handle_sync_func_call() local
189 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() local
198 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 …]
A Dasync_context_threadsafe_background.c99 sync_func_call_t *call = (sync_func_call_t *)worker; in handle_sync_func_call() local
100 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() local
144 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 …]
/external/lib/lwip/
A DFILES2 you use the lowel-level call-back/raw API.
/external/lib/libm/
A Drules.mk6 ifeq ($(call is_warning_flag_supported,-Wmaybe-uninitialized),yes)
/external/platform/nrfx/doc/
A Dnrfx.doxyfile2337 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2341 # So in most cases it will be better to enable call graphs for selected
2342 # functions only using the \callgraph command. Disabling a call graph can be

Completed in 10 milliseconds