Searched refs:bt_a2dp (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/include/zephyr/bluetooth/classic/ |
D | a2dp.h | 307 struct bt_a2dp; 380 typedef uint8_t (*bt_a2dp_discover_ep_cb)(struct bt_a2dp *a2dp, struct bt_a2dp_ep_info *info, 408 void (*connected)(struct bt_a2dp *a2dp, int err); 416 void (*disconnected)(struct bt_a2dp *a2dp); 432 int (*config_req)(struct bt_a2dp *a2dp, struct bt_a2dp_ep *ep, 586 struct bt_a2dp *bt_a2dp_connect(struct bt_conn *conn); 597 int bt_a2dp_disconnect(struct bt_a2dp *a2dp); 626 int bt_a2dp_discover(struct bt_a2dp *a2dp, struct bt_a2dp_discover_param *param); 639 struct bt_a2dp *a2dp; 748 int bt_a2dp_stream_config(struct bt_a2dp *a2dp, struct bt_a2dp_stream *stream,
|
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | a2dp.c | 30 #define A2DP_AVDTP(_avdtp) CONTAINER_OF(_avdtp, struct bt_a2dp, session) 33 CONTAINER_OF(_discover_param, struct bt_a2dp, discover_param) 36 CONTAINER_OF(_get_cap_param, struct bt_a2dp, get_capabilities_param) 39 CONTAINER_OF(_set_conf_param, struct bt_a2dp, set_config_param) 41 #define CTRL_PARAM(_ctrl_param) CONTAINER_OF(_ctrl_param, struct bt_a2dp, ctrl_param) 51 LOG_MODULE_REGISTER(bt_a2dp); 60 struct bt_a2dp { struct 74 static struct bt_a2dp connection[CONFIG_BT_MAX_CONN]; argument 76 static int bt_a2dp_get_sep_caps(struct bt_a2dp *a2dp); 78 static struct bt_a2dp *a2dp_get_connection(struct bt_conn *conn) in a2dp_get_connection() [all …]
|
/Zephyr-latest/subsys/bluetooth/host/classic/shell/ |
D | a2dp.c | 29 struct bt_a2dp *default_a2dp; 289 void app_connected(struct bt_a2dp *a2dp, int err) in app_connected() 299 void app_disconnected(struct bt_a2dp *a2dp) in app_disconnected() 305 int app_config_req(struct bt_a2dp *a2dp, struct bt_a2dp_ep *ep, in app_config_req() 654 static uint8_t bt_a2dp_discover_peer_endpoint_cb(struct bt_a2dp *a2dp, in bt_a2dp_discover_peer_endpoint_cb()
|