/Zephyr-latest/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 145 struct bt_iso_big *big; in bt_iso_big_create() local 151 big = malloc(sizeof(struct bt_iso_big)); in bt_iso_big_create() 152 zassert_not_null(big); in bt_iso_big_create() 153 big->num_bis = 0U; in bt_iso_big_create() 163 big->bis[i] = bis; in bt_iso_big_create() 164 big->num_bis++; in bt_iso_big_create() 170 *out_big = big; in bt_iso_big_create() 173 iso_cb->started(big); in bt_iso_big_create() 179 int bt_iso_big_terminate(struct bt_iso_big *big) in bt_iso_big_terminate() argument 182 zassert_not_equal(big->num_bis, 0); in bt_iso_big_terminate() [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/host/iso/bis/src/ |
D | bis_broadcaster.c | 227 static void terminate_big(struct bt_iso_big *big) in terminate_big() argument 233 err = bt_iso_big_terminate(big); in terminate_big() 236 big = NULL; in terminate_big() 255 struct bt_iso_big *big; in test_main() local 261 create_big(adv, 1U, &big); in test_main() 268 terminate_big(big); in test_main() 269 big = NULL; in test_main() 277 struct bt_iso_big *big; in test_main_disable() local 283 create_big(adv, ARRAY_SIZE(iso_chans), &big); in test_main_disable() 289 big = NULL; in test_main_disable() [all …]
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | iso.c | 370 struct bt_iso_big *big; in bt_iso_connected() local 372 big = lookup_big_by_handle(iso->iso.big_handle); in bt_iso_connected() 374 err = bt_iso_big_terminate(big); in bt_iso_connected() 2708 static void cleanup_big(struct bt_iso_big *big) in cleanup_big() argument 2712 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&big->bis_channels, bis, tmp, node) { in cleanup_big() 2718 sys_slist_remove(&big->bis_channels, NULL, &bis->node); in cleanup_big() 2721 memset(big, 0, sizeof(*big)); in cleanup_big() 2724 static void big_disconnect(struct bt_iso_big *big, uint8_t reason) in big_disconnect() argument 2728 SYS_SLIST_FOR_EACH_CONTAINER(&big->bis_channels, bis, node) { in big_disconnect() 2739 listener->stopped(big, reason); in big_disconnect() [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/src/ |
D | test_bis.c | 311 static void create_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_big() argument 329 err = bt_iso_big_create(adv, &big_create_param, big); in create_big() 343 static void terminate_big(struct bt_iso_big *big) in terminate_big() argument 348 err = bt_iso_big_terminate(big); in terminate_big() 364 static void create_advanced_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_advanced_big() argument 389 err = bt_iso_big_create(adv, &big_create_param, big); in create_advanced_big() 427 struct bt_iso_big *big; in test_iso_main() local 429 create_big(adv, &big); in test_iso_main() 474 terminate_big(big); in test_iso_main() 475 big = NULL; in test_iso_main() [all …]
|
/Zephyr-latest/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 | 657 static int create_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in create_big() argument 721 err = bt_iso_big_create(*adv, &big_create_param, big); in create_big() 738 static int delete_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in delete_big() argument 742 err = bt_iso_big_terminate(*big); in delete_big() 747 *big = NULL; in delete_big() 781 struct bt_iso_big *big; in test_run_broadcaster() local 811 err = create_big(&adv, &big); in test_run_broadcaster() 842 err = delete_big(&adv, &big); in test_run_broadcaster()
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/ |
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-latest/lib/heap/ |
D | Kconfig | 85 - "big" heaps with bigger memory overhead even for small heaps; 90 On 64-bit systems the "big" chunk header size conveniently provides 92 headers would require alignment padding up to the big header size 93 anyway so "big" heap is the only option in that case. 102 bool "Support for big heaps only" 104 Select this to optimize the code for big heaps only. This can 109 bool "Support for both small and big heaps at run time"
|
/Zephyr-latest/samples/bluetooth/iso_broadcast/src/ |
D | main.c | 110 struct bt_iso_big *big; in main() local 162 err = bt_iso_big_create(adv, &big_create_param, &big); in main() 222 err = bt_iso_big_terminate(big); in main() 243 err = bt_iso_big_create(adv, &big_create_param, &big); in main()
|
/Zephyr-latest/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-latest/tests/bsim/bluetooth/host/iso/frag_2/src/ |
D | broadcaster.c | 144 struct bt_iso_big *big; variable 180 create_big(adv, 1U, &big); in connect_iso() 188 err = bt_iso_big_terminate(big); in disconnect_iso() 199 big = NULL; in disconnect_iso()
|
/Zephyr-latest/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-latest/tests/benchmarks/app_kernel/ |
D | README.txt | 70 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 87 | put | get | no buf | small buf| big buf | no buf | small buf| big buf | 104 | put | get | no buf | small buf| big buf | no buf | small buf| big buf |
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | bap_endpoint.h | 112 struct bt_iso_big *big; member 182 struct bt_iso_big *big; member
|
D | bap_broadcast_sink.c | 191 sink->big = NULL; in broadcast_sink_clear_big() 447 static struct bt_bap_broadcast_sink *broadcast_sink_get_by_big(const struct bt_iso_big *big) in broadcast_sink_get_by_big() argument 450 if (broadcast_sinks[i].big == big) { in broadcast_sink_get_by_big() 734 if (sink->big == NULL) { in store_base_info() 802 if (sink->big == NULL) { in pa_decode_base() 876 __ASSERT(sink->big == NULL, "Encryption state shall not be updated while synced"); in update_recv_state_encryption() 925 if (sink->big != NULL) { in biginfo_recv() 974 static void big_started_cb(struct bt_iso_big *big) in big_started_cb() argument 976 struct bt_bap_broadcast_sink *sink = broadcast_sink_get_by_big(big); in big_started_cb() 991 static void big_stopped_cb(struct bt_iso_big *big, uint8_t reason) in big_stopped_cb() argument [all …]
|
D | bap_broadcast_source.c | 1091 err = bt_iso_big_create(adv, ¶m, &source->big); in bt_bap_broadcast_source_start() 1119 if (source->big == NULL) { in bt_bap_broadcast_source_stop() 1124 err = bt_iso_big_terminate(source->big); in bt_bap_broadcast_source_stop() 1186 static struct bt_bap_broadcast_source *get_broadcast_source_by_big(const struct bt_iso_big *big) in get_broadcast_source_by_big() argument 1189 if (broadcast_sources[i].big == big) { in get_broadcast_source_by_big() 1197 static void big_started_cb(struct bt_iso_big *big) in big_started_cb() argument 1199 struct bt_bap_broadcast_source *source = get_broadcast_source_by_big(big); in big_started_cb() 1214 static void big_stopped_cb(struct bt_iso_big *big, uint8_t reason) in big_stopped_cb() argument 1216 struct bt_bap_broadcast_source *source = get_broadcast_source_by_big(big); in big_stopped_cb() 1224 source->big = NULL; in big_stopped_cb()
|
/Zephyr-latest/drivers/i2s/ |
D | Kconfig.litex | 28 bool "Received data will be stored as big endian"
|
/Zephyr-latest/subsys/shell/ |
D | Kconfig.template.shell_log_queue_size | 9 (see $(module)_LOG_MESSAGE_QUEUE_TIMEOUT). Too big queue on relatively
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | iso.h | 1143 void (*started)(struct bt_iso_big *big); 1151 void (*stopped)(struct bt_iso_big *big, uint8_t reason); 1189 int bt_iso_big_terminate(struct bt_iso_big *big);
|
/Zephyr-latest/subsys/bluetooth/host/shell/ |
D | iso.c | 641 static struct bt_iso_big *big; variable 758 err = bt_iso_big_create(adv, ¶m, &big); in cmd_big_create() 906 err = bt_iso_big_sync(pa_sync, ¶m, &big); in cmd_big_sync() 922 err = bt_iso_big_terminate(big); in cmd_big_term() 962 SHELL_CMD_ARG(create-big, NULL, "Create a BIG as a broadcaster [enc <broadcast code>]", 968 SHELL_CMD_ARG(sync-big, NULL, 974 SHELL_CMD_ARG(term-big, NULL, "Terminate a BIG", cmd_big_term, 1, 0),
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.nxp_imx_netc | 62 Size, in bytes, of the TX data buffer. The size must be big enough to 84 Size, in bytes, of the RX data buffer. The size must be big enough to
|
/Zephyr-latest/tests/bsim/bluetooth/host/iso/frag/src/ |
D | broadcaster.c | 147 struct bt_iso_big *big; in init() local 175 create_big(adv, 1U, &big); in init()
|
/Zephyr-latest/samples/bluetooth/iso_receive/src/ |
D | main.c | 297 struct bt_iso_big *big; in main() local 428 err = bt_iso_big_sync(sync, &big_sync_param, &big); in main() 447 err = bt_iso_big_terminate(big); in main()
|
/Zephyr-latest/subsys/debug/gdbstub/ |
D | Kconfig | 36 for GDB backend. This needs to be big enough to hold one
|
/Zephyr-latest/subsys/mgmt/ec_host_cmd/backends/ |
D | Kconfig | 93 packet. This must be big enough to handle the biggest possible 102 packet. This must be big enough to handle the biggest possible
|