Home
last modified time | relevance | path

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

123

/Zephyr-Core-3.5.0/tests/bluetooth/audio/mocks/src/
Diso.c119 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/
Diso.c384 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/
Dmain.c309 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/
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.c613 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/
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-Core-3.5.0/samples/bluetooth/iso_broadcast/src/
Dmain.c89 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/
DREADME.txt62 | 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/
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-Core-3.5.0/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-Core-3.5.0/lib/os/
DKconfig.heap67 - "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/
Dbap_endpoint.h84 struct bt_iso_big *big; member
132 struct bt_iso_big *big; member
Dbap_broadcast_sink.c189 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, &param, &sink->big); in bt_bap_broadcast_sink_sync()
1081 err = bt_iso_big_terminate(sink->big); in bt_bap_broadcast_sink_stop()
Dbap_broadcast_source.c989 err = bt_iso_big_create(adv, &param, &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/
DKconfig.board13 bool "QEMU emulation for big endian MIPS Malta"
/Zephyr-Core-3.5.0/drivers/i2s/
DKconfig.litex28 bool "Received data will be stored as big endian"
/Zephyr-Core-3.5.0/subsys/shell/
DKconfig.template.shell_log_queue_size9 (see $(module)_LOG_MESSAGE_QUEUE_TIMEOUT). Too big queue on relatively
/Zephyr-Core-3.5.0/subsys/bluetooth/shell/
Diso.c567 static struct bt_iso_big *big; variable
682 err = bt_iso_big_create(adv, &param, &big); in cmd_big_create()
832 err = bt_iso_big_sync(pa_sync, &param, &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/
DKconfig76 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/
Dmain.c288 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/
DKconfig.nxp_s32_netc51 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
DKconfig.nxp_s32_gmac28 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/
DKconfig27 alignment, this will bring big waste of memory, so no support for it.
/Zephyr-Core-3.5.0/tests/boards/espressif_esp32/cache_coex/
DREADME.rst10 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/
Doverview.rst29 * Portable to all architectures supported by Zephyr (including big and
51 * Supports little and big endian architectures, and abstracts the hard

123