Home
last modified time | relevance | path

Searched refs:npl_funcs (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/bt/porting/npl/freertos/include/nimble/
Dnimble_npl_os.h128 extern struct npl_funcs_t *npl_funcs;
133 return npl_funcs->p_ble_npl_os_started(); in ble_npl_os_started()
139 return npl_funcs->p_ble_npl_get_current_task_id(); in ble_npl_get_current_task_id()
145 return npl_funcs->p_ble_npl_eventq_init(evq); in ble_npl_eventq_init()
151 return npl_funcs->p_ble_npl_eventq_deinit(evq); in ble_npl_eventq_deinit()
157 return npl_funcs->p_ble_npl_eventq_get(evq, tmo); in ble_npl_eventq_get()
163 return npl_funcs->p_ble_npl_eventq_put(evq, ev); in ble_npl_eventq_put()
169 return npl_funcs->p_ble_npl_eventq_remove(evq, ev); in ble_npl_eventq_remove()
175 return npl_funcs->p_ble_npl_event_run(ev); in ble_npl_event_run()
181 return npl_funcs->p_ble_npl_eventq_is_empty(evq); in ble_npl_eventq_is_empty()
[all …]
/hal_espressif-latest/components/bt/porting/npl/freertos/src/
Dnpl_os_freertos.c1084 struct npl_funcs_t *npl_funcs = NULL; variable
1088 return npl_funcs; in npl_freertos_funcs_get()
1093 npl_funcs = (struct npl_funcs_t *)bt_osi_mem_malloc_internal(sizeof(struct npl_funcs_t)); in npl_freertos_funcs_init()
1094 if(!npl_funcs) { in npl_freertos_funcs_init()
1098 memcpy(npl_funcs, &npl_funcs_ro, sizeof(struct npl_funcs_t)); in npl_freertos_funcs_init()
1256 if (npl_funcs) { in npl_freertos_funcs_deinit()
1257 bt_osi_mem_free(npl_funcs); in npl_freertos_funcs_deinit()
1259 npl_funcs = NULL; in npl_freertos_funcs_deinit()