Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/subsys/bluetooth/host/classic/
Da2dp.c75 static struct bt_a2dp_cb *a2dp_cb; variable
134 if ((a2dp_cb != NULL) && (a2dp_cb->connected != NULL)) { in a2dp_connected()
135 a2dp_cb->connected(a2dp, 0); in a2dp_connected()
145 if ((a2dp_cb != NULL) && (a2dp_cb->disconnected != NULL)) { in a2dp_disconnected()
146 a2dp_cb->disconnected(a2dp); in a2dp_disconnected()
234 if ((a2dp_cb != NULL) && (a2dp_cb->config_req != NULL)) { in a2dp_set_config_ind()
244 err = a2dp_cb->config_req(a2dp, ep, &cfg, &stream, &rsp_err_code); in a2dp_set_config_ind()
302 if ((a2dp_cb != NULL) && (a2dp_cb->establish_req != NULL)) { in a2dp_open_ind()
306 err = a2dp_cb->establish_req(stream, &rsp_err_code); in a2dp_open_ind()
336 if ((a2dp_cb != NULL) && (a2dp_cb->start_req != NULL)) { in a2dp_start_ind()
[all …]
/Zephyr-Core-3.7.0/subsys/bluetooth/shell/
Da2dp.c406 struct bt_a2dp_cb a2dp_cb = { variable
430 err = bt_a2dp_register_cb(&a2dp_cb); in cmd_register_cb()