/Zephyr-Core-3.5.0/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 119 struct bt_iso_big *big; in bt_iso_big_create() local 125 big = malloc(sizeof(struct bt_iso_big)); in bt_iso_big_create() 126 zassert_not_null(big); in bt_iso_big_create() 127 big->num_bis = 0U; in bt_iso_big_create() 137 big->bis[i] = bis; in bt_iso_big_create() 138 big->num_bis++; in bt_iso_big_create() 144 *out_big = big; in bt_iso_big_create() 149 int bt_iso_big_terminate(struct bt_iso_big *big) in bt_iso_big_terminate() argument 152 zassert_not_equal(big->num_bis, 0); in bt_iso_big_terminate() 154 for (uint8_t i = 0U; i < big->num_bis; i++) { in bt_iso_big_terminate() [all …]
|
/Zephyr-Core-3.5.0/subsys/bluetooth/host/ |
D | iso.c | 384 struct bt_iso_big *big; in bt_iso_connected() local 386 big = lookup_big_by_handle(iso->iso.big_handle); in bt_iso_connected() 388 err = bt_iso_big_terminate(big); in bt_iso_connected() 2474 static void cleanup_big(struct bt_iso_big *big) in cleanup_big() argument 2478 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&big->bis_channels, bis, tmp, node) { in cleanup_big() 2484 sys_slist_remove(&big->bis_channels, NULL, &bis->node); in cleanup_big() 2487 memset(big, 0, sizeof(*big)); in cleanup_big() 2490 static void big_disconnect(struct bt_iso_big *big, uint8_t reason) in big_disconnect() argument 2494 SYS_SLIST_FOR_EACH_CONTAINER(&big->bis_channels, bis, node) { in big_disconnect() 2501 static int big_init_bis(struct bt_iso_big *big, in big_init_bis() argument [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/ll/bis/src/ |
D | main.c | 309 static void create_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_big() argument 327 err = bt_iso_big_create(adv, &big_create_param, big); in create_big() 342 static void create_advanced_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_advanced_big() argument 367 err = bt_iso_big_create(adv, &big_create_param, big); in create_advanced_big() 382 static void terminate_big(struct bt_iso_big *big) in terminate_big() argument 387 err = bt_iso_big_terminate(big); in terminate_big() 404 struct bt_iso_big *big; in test_iso_main() local 425 create_big(adv, &big); in test_iso_main() 469 terminate_big(big); in test_iso_main() 470 big = NULL; in test_iso_main() [all …]
|
/Zephyr-Core-3.5.0/samples/bluetooth/iso_broadcast_benchmark/src/ |
D | receiver.c | 341 static int create_big_sync(struct bt_iso_big **big, struct bt_le_per_adv_sync *sync) in create_big_sync() argument 381 err = bt_iso_big_sync(sync, &big_sync_param, big); in create_big_sync() 400 static int cleanup(struct bt_le_per_adv_sync *sync, struct bt_iso_big *big) in cleanup() argument 414 if (!big_sync_lost && big) { in cleanup() 416 big_err = bt_iso_big_terminate(big); in cleanup() 444 struct bt_iso_big *big = NULL; in test_run_receiver() local 487 err = create_big_sync(&big, sync); in test_run_receiver() 489 (void)cleanup(sync, big); in test_run_receiver() 501 return cleanup(sync, big); in test_run_receiver()
|
D | broadcaster.c | 613 static int create_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in create_big() argument 659 err = bt_iso_big_create(*adv, &big_create_param, big); in create_big() 676 static int delete_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in delete_big() argument 680 err = bt_iso_big_terminate(*big); in delete_big() 685 *big = NULL; in delete_big() 719 struct bt_iso_big *big; in test_run_broadcaster() local 749 err = create_big(&adv, &big); in test_run_broadcaster() 780 err = delete_big(&adv, &big); in test_run_broadcaster()
|
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/shell/ |
D | iso.rst | 19 create-big :Create a BIG as a broadcaster [enc <broadcast code>] 21 sync-big :Synchronize to a BIG as a receiver <BIS bitfield> [mse] [timeout] 23 term-big :Terminate a BIG
|
/Zephyr-Core-3.5.0/samples/bluetooth/iso_broadcast/src/ |
D | main.c | 89 struct bt_iso_big *big; in main() local 134 err = bt_iso_big_create(adv, &big_create_param, &big); in main() 197 err = bt_iso_big_terminate(big); in main() 218 err = bt_iso_big_create(adv, &big_create_param, &big); in main()
|
/Zephyr-Core-3.5.0/tests/benchmarks/app_kernel/ |
D | README.txt | 62 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 79 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 96 | put | get | no buf | small buf| big buf | no buf | small buf| big buf |
|
/Zephyr-Core-3.5.0/drivers/mipi_dsi/ |
D | Kconfig.mcux | 26 convert RGB565 input data to BGR565 (little endian to big endian), 32 Swap 16 byte color data from little to big endian format. When
|
/Zephyr-Core-3.5.0/subsys/mgmt/mcumgr/grp/fs_mgmt/include/mgmt/mcumgr/grp/fs_mgmt/ |
D | fs_mgmt_config.h | 38 #warning CONFIG_MCUMGR_GRP_FS_DL_CHUNK_SIZE too big, rounding it down.
|
/Zephyr-Core-3.5.0/lib/os/ |
D | Kconfig.heap | 67 - "big" heaps with bigger memory overhead even for small heaps; 72 On 64-bit systems the "big" chunk header size conveniently provides 74 headers would require alignment padding up to the big header size 75 anyway so "big" heap is the only option in that case. 84 bool "Support for big heaps only" 86 Select this to optimize the code for big heaps only. This can 91 bool "Support for both small and big heaps at run time"
|
/Zephyr-Core-3.5.0/subsys/bluetooth/audio/ |
D | bap_endpoint.h | 84 struct bt_iso_big *big; member 132 struct bt_iso_big *big; member
|
D | bap_broadcast_sink.c | 189 sink->big = NULL; in broadcast_sink_clear_big() 377 if (sys_slist_is_empty(&sink->streams) && sink->big) { in broadcast_sink_iso_disconnected() 589 __ASSERT(sink->big == NULL, "Encryption state shall not be updated while synced"); in update_recv_state_encryption() 638 if (sink->big != NULL) { in biginfo_recv() 1030 err = bt_iso_big_sync(sink->pa_sync, ¶m, &sink->big); in bt_bap_broadcast_sink_sync() 1081 err = bt_iso_big_terminate(sink->big); in bt_bap_broadcast_sink_stop()
|
D | bap_broadcast_source.c | 989 err = bt_iso_big_create(adv, ¶m, &source->big); in bt_bap_broadcast_source_start() 1017 if (source->big == NULL) { in bt_bap_broadcast_source_stop() 1022 err = bt_iso_big_terminate(source->big); in bt_bap_broadcast_source_stop() 1028 source->big = NULL; in bt_bap_broadcast_source_stop()
|
/Zephyr-Core-3.5.0/boards/mips/qemu_malta/ |
D | Kconfig.board | 13 bool "QEMU emulation for big endian MIPS Malta"
|
/Zephyr-Core-3.5.0/drivers/i2s/ |
D | Kconfig.litex | 28 bool "Received data will be stored as big endian"
|
/Zephyr-Core-3.5.0/subsys/shell/ |
D | Kconfig.template.shell_log_queue_size | 9 (see $(module)_LOG_MESSAGE_QUEUE_TIMEOUT). Too big queue on relatively
|
/Zephyr-Core-3.5.0/subsys/bluetooth/shell/ |
D | iso.c | 567 static struct bt_iso_big *big; variable 682 err = bt_iso_big_create(adv, ¶m, &big); in cmd_big_create() 832 err = bt_iso_big_sync(pa_sync, ¶m, &big); in cmd_big_sync() 848 err = bt_iso_big_terminate(big); in cmd_big_term() 886 SHELL_CMD_ARG(create-big, NULL, "Create a BIG as a broadcaster [enc <broadcast code>]", 892 SHELL_CMD_ARG(sync-big, NULL, "Synchronize to a BIG as a receiver <BIS bitfield> [mse] " 896 SHELL_CMD_ARG(term-big, NULL, "Terminate a BIG", cmd_big_term, 1, 0),
|
/Zephyr-Core-3.5.0/subsys/mgmt/ec_host_cmd/backends/ |
D | Kconfig | 76 packet. This must be big enough to handle the biggest possible 85 packet. This must be big enough to handle the biggest possible
|
/Zephyr-Core-3.5.0/samples/bluetooth/iso_receive/src/ |
D | main.c | 288 struct bt_iso_big *big; in main() local 418 err = bt_iso_big_sync(sync, &big_sync_param, &big); in main() 437 err = bt_iso_big_terminate(big); in main()
|
/Zephyr-Core-3.5.0/drivers/ethernet/ |
D | Kconfig.nxp_s32_netc | 51 Size, in bytes, of the TX data buffer. The size must be big enough to 66 Size, in bytes, of the RX data buffer. The size must be big enough to
|
D | Kconfig.nxp_s32_gmac | 28 Size, in bytes, of the TX data buffer. The size must be big enough to 45 Size, in bytes, of the RX data buffer. The size must be big enough to
|
/Zephyr-Core-3.5.0/arch/arc/core/mpu/ |
D | Kconfig | 27 alignment, this will bring big waste of memory, so no support for it.
|
/Zephyr-Core-3.5.0/tests/boards/espressif_esp32/cache_coex/ |
D | README.rst | 10 a common cache. It does so by allocating a big PSRAM memory chunk and repeatedly filling that region
|
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/ |
D | overview.rst | 29 * Portable to all architectures supported by Zephyr (including big and 51 * Supports little and big endian architectures, and abstracts the hard
|