Home
last modified time | relevance | path

Searched refs:big (Results 1 – 25 of 75) sorted by relevance

123

/Zephyr-latest/tests/bluetooth/audio/mocks/src/
Diso.c151 struct bt_iso_big *big; in bt_iso_big_create() local
157 big = malloc(sizeof(struct bt_iso_big)); in bt_iso_big_create()
158 zassert_not_null(big); in bt_iso_big_create()
159 big->num_bis = 0U; in bt_iso_big_create()
169 big->bis[i] = bis; in bt_iso_big_create()
170 big->num_bis++; in bt_iso_big_create()
176 *out_big = big; in bt_iso_big_create()
179 iso_cb->started(big); in bt_iso_big_create()
185 int bt_iso_big_terminate(struct bt_iso_big *big) in bt_iso_big_terminate() argument
188 zassert_not_equal(big->num_bis, 0); in bt_iso_big_terminate()
[all …]
/Zephyr-latest/tests/bsim/bluetooth/host/iso/bis/src/
Dbis_broadcaster.c224 static void terminate_big(struct bt_iso_big *big) in terminate_big() argument
230 err = bt_iso_big_terminate(big); in terminate_big()
233 big = NULL; in terminate_big()
252 struct bt_iso_big *big; in test_main() local
258 create_big(adv, 1U, &big); in test_main()
265 terminate_big(big); in test_main()
266 big = NULL; in test_main()
274 struct bt_iso_big *big; in test_main_disable() local
280 create_big(adv, ARRAY_SIZE(iso_chans), &big); in test_main_disable()
286 big = NULL; in test_main_disable()
[all …]
Dbis_receiver.c251 struct bt_iso_big *big; in test_main() local
256 sync_big(sync, MIN(broadcaster_num_bis, CONFIG_BT_ISO_MAX_CHAN), &big); in test_main()
/Zephyr-latest/subsys/bluetooth/host/
Diso.c370 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/
Dtest_bis.c341 static void create_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_big() argument
361 err = bt_iso_big_create(adv, &big_create_param, big); in create_big()
375 static void terminate_big(struct bt_iso_big *big) in terminate_big() argument
380 err = bt_iso_big_terminate(big); in terminate_big()
396 static void create_advanced_big(struct bt_le_ext_adv *adv, struct bt_iso_big **big) in create_advanced_big() argument
421 err = bt_iso_big_create(adv, &big_create_param, big); in create_advanced_big()
459 struct bt_iso_big *big; in test_iso_main() local
461 create_big(adv, &big); in test_iso_main()
506 terminate_big(big); in test_iso_main()
507 big = NULL; in test_iso_main()
[all …]
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dreceiver.c341 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()
Dbroadcaster.c658 static int create_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in create_big() argument
722 err = bt_iso_big_create(*adv, &big_create_param, big); in create_big()
739 static int delete_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in delete_big() argument
743 if (*big != NULL) { in delete_big()
744 err = bt_iso_big_terminate(*big); in delete_big()
754 *big = NULL; in delete_big()
791 struct bt_iso_big *big; in test_run_broadcaster() local
821 err = create_big(&adv, &big); in test_run_broadcaster()
827 del_err = delete_big(&adv, &big); in test_run_broadcaster()
860 err = delete_big(&adv, &big); in test_run_broadcaster()
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/
Diso.rst19 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/samples/bluetooth/iso_broadcast/src/
Dmain.c112 struct bt_iso_big *big; in main() local
164 err = bt_iso_big_create(adv, &big_create_param, &big); in main()
224 err = bt_iso_big_terminate(big); in main()
245 err = bt_iso_big_create(adv, &big_create_param, &big); in main()
/Zephyr-latest/drivers/mipi_dsi/
DKconfig.mcux26 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/lib/heap/
DKconfig97 - "big" heaps with bigger memory overhead even for small heaps;
102 On 64-bit systems the "big" chunk header size conveniently provides
104 headers would require alignment padding up to the big header size
105 anyway so "big" heap is the only option in that case.
114 bool "Support for big heaps only"
116 Select this to optimize the code for big heaps only. This can
121 bool "Support for both small and big heaps at run time"
/Zephyr-latest/tests/bsim/bluetooth/host/iso/frag_2/src/
Dbroadcaster.c144 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/
Dfs_mgmt_config.h38 #warning CONFIG_MCUMGR_GRP_FS_DL_CHUNK_SIZE too big, rounding it down.
/Zephyr-latest/tests/benchmarks/app_kernel/
DREADME.txt70 | 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/
Dbap_endpoint.h113 struct bt_iso_big *big; member
183 struct bt_iso_big *big; member
Dbap_broadcast_sink.c192 sink->big = NULL; in broadcast_sink_clear_big()
448 static struct bt_bap_broadcast_sink *broadcast_sink_get_by_big(const struct bt_iso_big *big) in broadcast_sink_get_by_big() argument
451 if (broadcast_sinks[i].big == big) { in broadcast_sink_get_by_big()
680 if (sink->big == NULL) { in pa_decode_base()
744 __ASSERT(sink->big == NULL, "Encryption state shall not be updated while synced"); in update_recv_state_encryption()
793 if (sink->big != NULL) { in biginfo_recv()
842 static void big_started_cb(struct bt_iso_big *big) in big_started_cb() argument
844 struct bt_bap_broadcast_sink *sink = broadcast_sink_get_by_big(big); in big_started_cb()
859 static void big_stopped_cb(struct bt_iso_big *big, uint8_t reason) in big_stopped_cb() argument
861 struct bt_bap_broadcast_sink *sink = broadcast_sink_get_by_big(big); in big_stopped_cb()
[all …]
Dbap_broadcast_source.c1091 err = bt_iso_big_create(adv, &param, &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/
DKconfig.litex28 bool "Received data will be stored as big endian"
/Zephyr-latest/subsys/shell/
DKconfig.template.shell_log_queue_size9 (see $(module)_LOG_MESSAGE_QUEUE_TIMEOUT). Too big queue on relatively
/Zephyr-latest/include/zephyr/bluetooth/
Diso.h1143 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/
Diso.c648 static struct bt_iso_big *big; variable
771 err = bt_iso_big_create(adv, &param, &big); in cmd_big_create()
919 err = bt_iso_big_sync(pa_sync, &param, &big); in cmd_big_sync()
935 err = bt_iso_big_terminate(big); in cmd_big_term()
975 SHELL_CMD_ARG(create-big, NULL, "Create a BIG as a broadcaster [enc <broadcast code>]",
981 SHELL_CMD_ARG(sync-big, NULL,
987 SHELL_CMD_ARG(term-big, NULL, "Terminate a BIG", cmd_big_term, 1, 0),
/Zephyr-latest/tests/bsim/bluetooth/host/iso/frag/src/
Dbroadcaster.c147 struct bt_iso_big *big; in init() local
175 create_big(adv, 1U, &big); in init()
/Zephyr-latest/drivers/ethernet/nxp_imx_netc/
DKconfig63 Size, in bytes, of the TX data buffer. The size must be big enough to
85 Size, in bytes, of the RX data buffer. The size must be big enough to
/Zephyr-latest/samples/bluetooth/iso_receive/src/
Dmain.c297 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/
DKconfig36 for GDB backend. This needs to be big enough to hold one

123