Searched refs:chans (Results 1 – 8 of 8) sorted by relevance
/Zephyr-latest/subsys/bluetooth/host/shell/ |
D | iso.c | 198 struct bt_iso_chan *chans[CIS_ISO_CHAN_COUNT]; in cmd_cig_create() local 205 chans[0] = &iso_chan; in cmd_cig_create() 209 chans[0]->qos->tx = &iso_tx_qos; in cmd_cig_create() 210 chans[0]->qos->rx = NULL; in cmd_cig_create() 212 chans[0]->qos->tx = NULL; in cmd_cig_create() 213 chans[0]->qos->rx = &iso_rx_qos; in cmd_cig_create() 215 chans[0]->qos->tx = &iso_tx_qos; in cmd_cig_create() 216 chans[0]->qos->rx = &iso_rx_qos; in cmd_cig_create() 342 if (chans[0]->qos->tx) { in cmd_cig_create() 343 chans[0]->qos->tx->sdu = sdu; in cmd_cig_create() [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/ecred/dut/src/ |
D | dut.c | 23 static struct bt_l2cap_le_chan chans[4]; variable 101 chans[i].chan.ops = &ops; in entrypoint_dut() 104 chan_list[i] = &chans[i].chan; in entrypoint_dut()
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | l2cap.h | 581 struct bt_l2cap_chan **chans, uint16_t psm); 595 int bt_l2cap_ecred_chan_reconfigure(struct bt_l2cap_chan **chans, uint16_t mtu); 640 int bt_l2cap_ecred_chan_reconfigure_explicit(struct bt_l2cap_chan **chans, size_t chan_count,
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/send_on_connect/src/ |
D | main_l2cap_send_on_connect.c | 95 struct bt_l2cap_chan *chans[] = {&channel.chan, NULL}; in connect_l2cap_channel() local 101 err = bt_l2cap_ecred_chan_connect(default_conn, chans, server.psm); in connect_l2cap_channel()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | l2cap.c | 1652 struct bt_l2cap_chan *chans[BT_L2CAP_ECRED_CHAN_MAX_PER_REQ]; in le_ecred_reconf_req() local 1706 chans[chan_count] = chan; in le_ecred_reconf_req() 1720 BT_L2CAP_LE_CHAN(chans[i])->tx.mtu = mtu; in le_ecred_reconf_req() 1721 BT_L2CAP_LE_CHAN(chans[i])->tx.mps = mps; in le_ecred_reconf_req() 1723 if (chans[i]->ops->reconfigured) { in le_ecred_reconf_req() 1724 chans[i]->ops->reconfigured(chans[i]); in le_ecred_reconf_req() 2953 int bt_l2cap_ecred_chan_reconfigure(struct bt_l2cap_chan **chans, uint16_t mtu) in bt_l2cap_ecred_chan_reconfigure() argument 2962 LOG_DBG("chans %p mtu 0x%04x", chans, mtu); in bt_l2cap_ecred_chan_reconfigure() 2964 if (!chans) { in bt_l2cap_ecred_chan_reconfigure() 2969 if (!chans[i]) { in bt_l2cap_ecred_chan_reconfigure() [all …]
|
D | att.c | 148 sys_slist_t chans; member 754 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&att->chans, chan, tmp, node) { in att_send_process() 889 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&att->chans, chan, tmp, node) { in att_req_send_process() 3030 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&att->chans, chan, tmp, node) { in bt_att_create_pdu() 3122 sys_slist_find_and_remove(&chan->att->chans, &chan->node); in att_chan_detach() 3184 if (sys_slist_is_empty(&att->chans)) { in att_chan_attach() 3192 sys_slist_prepend(&att->chans, &chan->node); in att_chan_attach() 3227 if (!sys_slist_is_empty(&att->chans)) { in bt_att_disconnected() 3390 SYS_SLIST_FOR_EACH_CONTAINER(&att->chans, chan, node) { in att_chan_new() 3446 SYS_SLIST_FOR_EACH_CONTAINER(&att->chans, chan, node) { in bt_eatt_count() [all …]
|
D | conn_internal.h | 401 struct bt_iso_chan **chans; member
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/userdata/src/ |
D | main_l2cap_userdata.c | 90 struct bt_l2cap_chan *chans[] = {&channel.chan, NULL}; in connect_l2cap_channel() local 97 err = bt_l2cap_ecred_chan_connect(default_conn, chans, server.psm); in connect_l2cap_channel()
|