/Zephyr-latest/tests/bluetooth/audio/cap_commander/src/ |
D | test_vcp.c | 73 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local 76 .members = members, in ZTEST_F() 82 for (size_t i = 0U; i < ARRAY_SIZE(members); i++) { in ZTEST_F() 83 members[i].member = &fixture->conns[i]; in ZTEST_F() 105 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local 108 .members = members, in ZTEST_F() 114 for (size_t i = 0U; i < ARRAY_SIZE(members); i++) { in ZTEST_F() 115 members[i].member = &fixture->conns[i]; in ZTEST_F() 154 .members = NULL, in ZTEST_F() 166 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local [all …]
|
D | test_micp.c | 286 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local 289 .members = members, in ZTEST_F() 295 for (size_t i = 0U; i < ARRAY_SIZE(members); i++) { in ZTEST_F() 296 members[i].member = &fixture->conns[i]; in ZTEST_F() 318 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local 321 .members = members, in ZTEST_F() 327 for (size_t i = 0U; i < ARRAY_SIZE(members); i++) { in ZTEST_F() 328 members[i].member = &fixture->conns[i]; in ZTEST_F() 368 .members = NULL, in ZTEST_F() 381 union bt_cap_set_member members[ARRAY_SIZE(fixture->conns)]; in ZTEST_F() local [all …]
|
/Zephyr-latest/tests/bluetooth/tester/src/audio/ |
D | btp_csip.c | 163 struct bt_csip_set_coordinator_set_member *members[], in csip_set_coordinator_oap_cb() argument 167 LOG_DBG("Ordered access for members[%zu]: %p", i, members[i]); in csip_set_coordinator_oap_cb() 193 static int get_available_members(const struct bt_csip_set_coordinator_set_member **members) in get_available_members() argument 207 members[members_count++] = btp_csip_set_members[i]; in get_available_members() 221 const struct bt_csip_set_coordinator_set_member *members[ARRAY_SIZE(btp_csip_set_members)]; in btp_csip_set_coordinator_lock() local 233 rc = get_available_members(members); in btp_csip_set_coordinator_lock() 239 err = bt_csip_set_coordinator_lock(members, members_count, &cur_csis_inst->info); in btp_csip_set_coordinator_lock() 252 const struct bt_csip_set_coordinator_set_member *members[ARRAY_SIZE(btp_csip_set_members)]; in btp_csip_set_coordinator_release() local 264 rc = get_available_members(members); in btp_csip_set_coordinator_release() 270 err = bt_csip_set_coordinator_release(members, members_count, &cur_csis_inst->info); in btp_csip_set_coordinator_release() [all …]
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/ |
D | csip.rst | 13 or a laptop. The client is able to lock and release members of a coordinated 16 To lock a set, the client must connect to each of the set members it wants to 17 lock. This implementation will always try to connect to all the members of 21 If the locks on set members shall persists through disconnects, it is 22 necessary to bond with the set members. If you need to bond with multiple 23 set members, make sure that :code:`BT_MAX_PAIRED` is correctly configured. 35 read the set information, which is needed to identify other set members. 36 The client can then scan for and connect to the remaining set members, and once 37 all the members has been connected to, it can lock and release the set. 50 discover_members :Scan for set members <set_pointer> [all …]
|
/Zephyr-latest/subsys/bluetooth/audio/shell/ |
D | cap_commander.c | 210 union bt_cap_set_member members[CONFIG_BT_MAX_CONN] = {0}; in cmd_cap_commander_change_volume() local 212 .members = members, in cmd_cap_commander_change_volume() 243 param.members = members; in cmd_cap_commander_change_volume() 251 param.members[i].member = conn; in cmd_cap_commander_change_volume() 270 union bt_cap_set_member members[CONFIG_BT_MAX_CONN] = {0}; in cmd_cap_commander_change_volume_mute() local 272 .members = members, in cmd_cap_commander_change_volume_mute() 293 param.members = members; in cmd_cap_commander_change_volume_mute() 301 param.members[i].member = conn; in cmd_cap_commander_change_volume_mute() 396 union bt_cap_set_member members[CONFIG_BT_MAX_CONN] = {0}; in cmd_cap_commander_change_microphone_mute() local 398 .members = members, in cmd_cap_commander_change_microphone_mute() [all …]
|
D | csip_set_coordinator.c | 163 struct bt_csip_set_coordinator_set_member *members[], in csip_set_coordinator_oap_cb() argument 167 printk("Ordered access for members[%zu]: %p\n", i, members[i]); in csip_set_coordinator_oap_cb() 519 const struct bt_csip_set_coordinator_set_member *members[ARRAY_SIZE(set_members)]; in cmd_csip_set_coordinator_ordered_access() local 530 if (member_count > ARRAY_SIZE(members)) { in cmd_csip_set_coordinator_ordered_access() 539 members[i] = set_members[i]; in cmd_csip_set_coordinator_ordered_access() 542 err = bt_csip_set_coordinator_ordered_access(members, in cmd_csip_set_coordinator_ordered_access() 543 ARRAY_SIZE(members), in cmd_csip_set_coordinator_ordered_access()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | csip_set_coordinator.c | 60 struct bt_csip_set_coordinator_set_member *members[CONFIG_BT_MAX_CONN]; member 112 const struct bt_csip_set_coordinator_set_member *member = active.members[i]; in active_members_reset() 185 member = active.members[active.members_handled]; in get_next_active_instance() 228 static void active_members_store_ordered(const struct bt_csip_set_coordinator_set_member *members[], in active_members_store_ordered() argument 233 (void)memcpy(active.members, members, count * sizeof(members[0U])); in active_members_store_ordered() 238 qsort(active.members, count, sizeof(members[0U]), in active_members_store_ordered() 244 lookup_instance_by_set_info(active.members[i - 1U], info); in active_members_store_ordered() 246 lookup_instance_by_set_info(active.members[i], info); in active_members_store_ordered() 1081 member = active.members[active.members_handled - active.members_restored - 1]; in csip_set_coordinator_write_restore_cb() 1116 member = active.members[active.members_handled - 1]; in csip_set_coordinator_write_lock_cb() [all …]
|
D | cap_commander.c | 976 CHECKIF(param->members == NULL) { in valid_change_volume_param() 988 const union bt_cap_set_member *member = ¶m->members[i]; in valid_change_volume_param() 1008 const union bt_cap_set_member *other = ¶m->members[j]; in valid_change_volume_param() 1110 bt_cap_common_get_member_conn(param->type, ¶m->members[i]); in bt_cap_commander_change_volume() 1150 CHECKIF(param->members == NULL) { in valid_change_volume_mute_state_param() 1162 const union bt_cap_set_member *member = ¶m->members[i]; in valid_change_volume_mute_state_param() 1182 const union bt_cap_set_member *other = ¶m->members[j]; in valid_change_volume_mute_state_param() 1290 bt_cap_common_get_member_conn(param->type, ¶m->members[i]); in bt_cap_commander_change_volume_mute_state() 1573 CHECKIF(param->members == NULL) { in valid_change_microphone_mute_state_param() 1585 const union bt_cap_set_member *member = ¶m->members[i]; in valid_change_microphone_mute_state_param() [all …]
|
D | Kconfig.csip | 75 to locate members and decrypt the SIRK, and thus won't work 76 with set members that are not using the sample data.
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | csip.h | 460 struct bt_csip_set_coordinator_set_member *members[], 487 const struct bt_csip_set_coordinator_set_member *members[], 508 int bt_csip_set_coordinator_lock(const struct bt_csip_set_coordinator_set_member **members, 526 int bt_csip_set_coordinator_release(const struct bt_csip_set_coordinator_set_member **members,
|
D | cap.h | 709 union bt_cap_set_member **members; member 1060 union bt_cap_set_member *members; member 1122 union bt_cap_set_member *members; member 1151 union bt_cap_set_member *members; member
|
/Zephyr-latest/doc/project/ |
D | tsc.rst | 13 Zephyr Project. TSC members work collaboratively with other TSC members, 17 By fulfilling the rights and responsibilities below, TSC members contribute to 47 TSC members are expected to fulfill the following responsibilities, though it is 53 core members in working groups and committees. 98 - Appointed TSC members have no term limits besides the term of their employment 101 - Appointed TSC members can select an Alternate from the same organization. 106 Per the `Zephyr project charter`_, TSC members can nominate representatives from 111 - Elected TSC members do not have the right to appoint an Alternate. 113 required to reconfirm the membership of elected members. If the elected member 117 will be open for new members outside of the quarterly nomination limit. The [all …]
|
D | working_groups.rst | 19 - Each working group shall have a team of members who are actively involved 24 - All TSC members are eligible to join a working group as members, part of 26 - The minimal number of members may vary depending on the complexity of the 28 - A working group should aim to have at least five to seven members to 46 - The Chair and Co-Chair shall be elected by the members of the working group 56 - Voting for a Chair or Co-Chair is open to the members of the working group. 58 - The Chair and Co-Chair shall be members of the working group.
|
D | communication.rst | 11 communication tool by project members, contributors, and the community. There
|
D | project_roles.rst | 15 members of the TSC under the guidelines stated in the project Charter. 18 May become a Maintainer with approval of existing TSC voting members. 151 approved by the TSC voting members. 207 * The members of the Release Engineering team are expected to fill 230 Nominees may become members of the team by approval of the 231 existing TSC voting members. 235 composition (ensure, for example, that team members are 318 should send the requested changes to the TSC and give members of the TSC two
|
D | index.rst | 27 community members work together to review these Issues and PRs, managing
|
/Zephyr-latest/boards/nordic/nrf52840dk/ |
D | Kconfig.nrf52840dk | 1 # Copyright (c) 2022 Zephyr Project members and individual contributors
|
/Zephyr-latest/boards/nordic/nrf5340dk/ |
D | Kconfig.nrf5340dk | 1 # Copyright (c) 2022 Zephyr Project members and individual contributors
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | cap_commander_test.c | 848 union bt_cap_set_member members[CONFIG_BT_MAX_CONN]; in test_change_volume() local 851 .members = members, in test_change_volume() 861 param.members[i].member = connected_conns[i]; in test_change_volume() 876 union bt_cap_set_member members[CONFIG_BT_MAX_CONN]; in test_change_volume_mute() local 879 .members = members, in test_change_volume_mute() 889 param.members[i].member = connected_conns[i]; in test_change_volume_mute() 932 union bt_cap_set_member members[CONFIG_BT_MAX_CONN]; in test_change_microphone_mute() local 935 .members = members, in test_change_microphone_mute() 945 param.members[i].member = connected_conns[i]; in test_change_microphone_mute()
|
D | csip_set_coordinator_test.c | 166 struct bt_csip_set_coordinator_set_member *members[], in csip_set_coordinator_oap_cb() argument 170 printk("Ordered access for members[%zu]: %p\n", i, members[i]); in csip_set_coordinator_oap_cb() 248 static void ordered_access(const struct bt_csip_set_coordinator_set_member **members, in ordered_access() argument 262 err = bt_csip_set_coordinator_ordered_access(members, count, &primary_inst->info, in ordered_access()
|
/Zephyr-latest/doc/services/debugging/ |
D | symtab.rst | 19 achieved by directly accessing the members of the data structure.
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | doxybridge.py | 147 members = parse_members(sectiondef) 148 for kind, data in members.items():
|
/Zephyr-latest/scripts/build/ |
D | gen_kobject_list.py | 324 self.members = [] 327 self.members.append(member) 330 return "<struct %s, with %s>" % (self.name, self.members) 337 for member in self.members: 345 self.members.remove(bad_member) 351 for member in self.members:
|
/Zephyr-latest/.github/ISSUE_TEMPLATE/ |
D | 003_rfc-proposal.md | 13 This section targets end users, TSC members, maintainers and anyone else that might
|
/Zephyr-latest/kernel/ |
D | Kconfig.mem_domain | 47 members of memory domains, they have no implications on supervisor
|