Home
last modified time | relevance | path

Searched refs:pref (Results 1 – 24 of 24) sorted by relevance

/Zephyr-latest/samples/bluetooth/cap_acceptor/src/
Dcap_acceptor_unicast.c112 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/
Dcap_initiator_unicast.c95 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/
Dbap_unicast_sr.c137 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/
Dgmap_ugt_test.c153 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()
Dbap_unicast_server_test.c100 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
Dcap_acceptor_test.c470 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()
Dbap_unicast_client_test.c70 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
Dgmap_ugg_test.c162 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
Dcap_initiator_unicast_test.c137 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
/Zephyr-latest/samples/bluetooth/hap_ha/src/
Dbap_unicast_sr.c215 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/
Dascs.c702 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 …]
Dcap_stream.c51 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()
Dbap_unicast_client.c859 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/
Dtest_common.c145 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()
Dmain.c602 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()
Dtest_ase_control_params.c380 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/
Dbap_unicast_client.c55 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/
Dmain.c307 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/
Dbap.h895 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/
Dcap_initiator.c46 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_bap_unicast.c327 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/
Dmain.c217 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/
Dbap.c642 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/
DREADME.rst274 …::5188:1678:d0c0:6893 from :: via fd11:db8:1::2 dev otbr0 src fd11:db8:1::1 metric 1024 pref medium