| /Zephyr-latest/samples/bluetooth/cap_acceptor/src/ |
| D | cap_acceptor_unicast.c | 112 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config_cb() argument 133 *pref = qos_pref; in unicast_server_config_cb() 140 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig_cb() argument 145 *pref = qos_pref; in unicast_server_reconfig_cb() 252 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured_cb() argument 262 pref->unframed_supported ? "supported" : "not supported", pref->phy, pref->rtn, in unicast_stream_configured_cb() 263 pref->latency, pref->pd_min, pref->pd_max, pref->pref_pd_min, pref->pref_pd_max); in unicast_stream_configured_cb()
|
| /Zephyr-latest/samples/bluetooth/cap_initiator/src/ |
| D | cap_initiator_unicast.c | 95 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured_cb() argument 105 pref->unframed_supported ? "supported" : "not supported", pref->phy, pref->rtn, in unicast_stream_configured_cb() 106 pref->latency, pref->pd_min, pref->pd_max, pref->pref_pd_min, pref->pref_pd_max); in unicast_stream_configured_cb()
|
| /Zephyr-latest/samples/bluetooth/tmap_peripheral/src/ |
| D | bap_unicast_sr.c | 137 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 158 *pref = qos_pref; in lc3_config() 165 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 169 *pref = qos_pref; in lc3_reconfig()
|
| /Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
| D | gmap_ugt_test.c | 153 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config() argument 170 *pref = unicast_qos_pref; in unicast_server_config() 177 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig() argument 184 *pref = unicast_qos_pref; in unicast_server_reconfig()
|
| D | bap_unicast_server_test.c | 100 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 119 *pref = qos_pref; in lc3_config() 126 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
| D | cap_acceptor_test.c | 470 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config() argument 489 *pref = unicast_qos_pref; in unicast_server_config() 496 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig() argument 503 *pref = unicast_qos_pref; in unicast_server_reconfig()
|
| D | bap_unicast_client_test.c | 70 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
| D | gmap_ugg_test.c | 162 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
|
| D | cap_initiator_unicast_test.c | 137 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
|
| /Zephyr-latest/samples/bluetooth/hap_ha/src/ |
| D | bap_unicast_sr.c | 215 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 234 *pref = qos_pref; in lc3_config() 241 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
| /Zephyr-latest/subsys/bluetooth/audio/ |
| D | ascs.c | 702 struct bt_bap_qos_cfg_pref *pref = &ep->qos_pref; in ascs_ep_get_status_config() local 705 cfg->framing = pref->unframed_supported ? BT_ASCS_QOS_FRAMING_UNFRAMED in ascs_ep_get_status_config() 707 cfg->phy = pref->phy; in ascs_ep_get_status_config() 708 cfg->rtn = pref->rtn; in ascs_ep_get_status_config() 709 cfg->latency = sys_cpu_to_le16(pref->latency); in ascs_ep_get_status_config() 710 sys_put_le24(pref->pd_min, cfg->pd_min); in ascs_ep_get_status_config() 711 sys_put_le24(pref->pd_max, cfg->pd_max); in ascs_ep_get_status_config() 712 sys_put_le24(pref->pref_pd_min, cfg->prefer_pd_min); in ascs_ep_get_status_config() 713 sys_put_le24(pref->pref_pd_max, cfg->prefer_pd_max); in ascs_ep_get_status_config() 720 bt_audio_dir_str(ep->dir), pref->unframed_supported, pref->phy, pref->rtn, in ascs_ep_get_status_config() [all …]
|
| D | cap_stream.c | 51 const struct bt_bap_qos_cfg_pref *pref) in cap_stream_configured_cb() argument 61 ops->configured(bap_stream, pref); in cap_stream_configured_cb()
|
| D | bap_unicast_client.c | 859 struct bt_bap_qos_cfg_pref *pref; in unicast_client_ep_config_state() local 903 pref = &stream->ep->qos_pref; in unicast_client_ep_config_state() 906 pref->unframed_supported = cfg->framing == BT_ASCS_QOS_FRAMING_UNFRAMED; in unicast_client_ep_config_state() 907 pref->phy = cfg->phy; in unicast_client_ep_config_state() 908 pref->rtn = cfg->rtn; in unicast_client_ep_config_state() 909 pref->latency = sys_le16_to_cpu(cfg->latency); in unicast_client_ep_config_state() 910 pref->pd_min = sys_get_le24(cfg->pd_min); in unicast_client_ep_config_state() 911 pref->pd_max = sys_get_le24(cfg->pd_max); in unicast_client_ep_config_state() 912 pref->pref_pd_min = sys_get_le24(cfg->prefer_pd_min); in unicast_client_ep_config_state() 913 pref->pref_pd_max = sys_get_le24(cfg->prefer_pd_max); in unicast_client_ep_config_state() [all …]
|
| /Zephyr-latest/tests/bluetooth/audio/ascs/src/ |
| D | test_common.c | 145 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 149 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
| D | main.c | 602 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 606 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
| D | test_ase_control_params.c | 380 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 384 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
| /Zephyr-latest/tests/bluetooth/audio/cap_initiator/uut/ |
| D | bap_unicast_client.c | 55 const struct bt_bap_qos_cfg_pref pref = {0}; in bt_bap_unicast_client_config() local 57 stream->ops->configured(stream, &pref); in bt_bap_unicast_client_config()
|
| /Zephyr-latest/samples/bluetooth/bap_unicast_server/src/ |
| D | main.c | 307 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 327 *pref = qos_pref; in lc3_config() 339 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
| /Zephyr-latest/include/zephyr/bluetooth/audio/ |
| D | bap.h | 895 void (*configured)(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref); 1313 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp); 1333 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp);
|
| /Zephyr-latest/samples/bluetooth/tmap_central/src/ |
| D | cap_initiator.c | 46 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
|
| /Zephyr-latest/tests/bluetooth/tester/src/audio/ |
| D | btp_bap_unicast.c | 327 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 369 *pref = qos_pref; in lc3_config() 376 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 504 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
| /Zephyr-latest/samples/bluetooth/bap_unicast_client/src/ |
| D | main.c | 217 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
| /Zephyr-latest/subsys/bluetooth/audio/shell/ |
| D | bap.c | 642 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 661 *pref = qos_pref; in lc3_config() 668 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 678 *pref = qos_pref; in lc3_reconfig() 3168 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
|
| /Zephyr-latest/samples/net/sockets/echo_client/ |
| D | README.rst | 274 …::5188:1678:d0c0:6893 from :: via fd11:db8:1::2 dev otbr0 src fd11:db8:1::1 metric 1024 pref medium
|