Home
last modified time | relevance | path

Searched refs:hdl (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Disoal.c203 static isoal_status_t isoal_sink_allocate(isoal_sink_handle_t *hdl) in isoal_sink_allocate() argument
211 *hdl = i; in isoal_sink_allocate()
223 static void isoal_sink_deallocate(isoal_sink_handle_t hdl) in isoal_sink_deallocate() argument
225 if (hdl < ARRAY_SIZE(isoal_global.sink_allocated)) { in isoal_sink_deallocate()
226 isoal_global.sink_allocated[hdl] = ISOAL_ALLOC_STATE_FREE; in isoal_sink_deallocate()
231 if (hdl < ARRAY_SIZE(isoal_global.sink_state)) { in isoal_sink_deallocate()
232 (void)memset(&isoal_global.sink_state[hdl], 0, sizeof(struct isoal_sink)); in isoal_sink_deallocate()
270 isoal_sink_handle_t *hdl) in isoal_sink_create() argument
281 err = isoal_sink_allocate(hdl); in isoal_sink_create()
286 struct isoal_sink_session *session = &isoal_global.sink_state[*hdl].session; in isoal_sink_create()
[all …]
Disoal.h437 isoal_sink_handle_t *hdl);
439 void isoal_sink_enable(isoal_sink_handle_t hdl);
441 void isoal_sink_disable(isoal_sink_handle_t hdl);
443 void isoal_sink_destroy(isoal_sink_handle_t hdl);
474 isoal_source_handle_t *hdl);
476 void isoal_source_enable(isoal_source_handle_t hdl);
478 void isoal_source_disable(isoal_source_handle_t hdl);
480 void isoal_source_destroy(isoal_source_handle_t hdl);
/Zephyr-latest/tests/lib/devicetree/devices/src/
Dmain.c115 static bool check_handle(device_handle_t hdl, in check_handle() argument
122 if (*hdls == hdl) { in check_handle()