/Zephyr-Core-3.5.0/subsys/bluetooth/audio/ |
D | media_proxy.c | 24 struct media_proxy_pl_calls *calls; member 88 return mprx.local_player.calls->get_player_name(); in media_proxy_sctrl_get_player_name() 94 return mprx.local_player.calls->get_icon_id(); in media_proxy_sctrl_get_icon_id() 100 return mprx.local_player.calls->get_icon_url(); in media_proxy_sctrl_get_icon_url() 105 return mprx.local_player.calls->get_track_title(); in media_proxy_sctrl_get_track_title() 110 return mprx.local_player.calls->get_track_duration(); in media_proxy_sctrl_get_track_duration() 115 return mprx.local_player.calls->get_track_position(); in media_proxy_sctrl_get_track_position() 120 mprx.local_player.calls->set_track_position(position); in media_proxy_sctrl_set_track_position() 125 return mprx.local_player.calls->get_playback_speed(); in media_proxy_sctrl_get_playback_speed() 130 mprx.local_player.calls->set_playback_speed(speed); in media_proxy_sctrl_set_playback_speed() [all …]
|
D | tbs.c | 52 struct bt_tbs_call calls[CONFIG_BT_TBS_MAX_CALLS]; member 120 for (int i = 0; i < ARRAY_SIZE(svc_insts[i].calls); i++) { in lookup_call_in_inst() 121 if (inst->calls[i].index == call_index) { in lookup_call_in_inst() 122 return &inst->calls[i]; in lookup_call_in_inst() 252 for (size_t j = 0; j < ARRAY_SIZE(svc_insts[i].calls); j++) { in lookup_inst_by_uri_scheme() 332 const struct bt_tbs_call *calls; in net_buf_put_call_state() local 343 calls = svc_insts[i].calls; in net_buf_put_call_state() 344 call_count = ARRAY_SIZE(svc_insts[i].calls); in net_buf_put_call_state() 347 call = &calls[j]; in net_buf_put_call_state() 361 calls = inst->calls; in net_buf_put_call_state() [all …]
|
D | mpl.c | 242 .calls = { 0 }, 2762 media_player.calls.get_player_name = get_player_name; in media_proxy_pl_init() 2764 media_player.calls.get_icon_id = get_icon_id; in media_proxy_pl_init() 2766 media_player.calls.get_icon_url = get_icon_url; in media_proxy_pl_init() 2767 media_player.calls.get_track_title = get_track_title; in media_proxy_pl_init() 2768 media_player.calls.get_track_duration = get_track_duration; in media_proxy_pl_init() 2769 media_player.calls.get_track_position = get_track_position; in media_proxy_pl_init() 2770 media_player.calls.set_track_position = set_track_position; in media_proxy_pl_init() 2771 media_player.calls.get_playback_speed = get_playback_speed; in media_proxy_pl_init() 2772 media_player.calls.set_playback_speed = set_playback_speed; in media_proxy_pl_init() [all …]
|
D | mpl_internal.h | 85 struct media_proxy_pl_calls calls; member
|
/Zephyr-Core-3.5.0/tests/benchmarks/sched/ |
D | README.rst | 11 1. The main thread calls _unpend_first_thread() 12 2. The main thread calls _ready_thread() 13 3. The main thread calls k_yield() 15 4. The partner thread then runs and calls _pend_curr_irqlock() again
|
/Zephyr-Core-3.5.0/drivers/i2c/ |
D | Kconfig.sam_twihs | 17 int "Submission queue size for blocking calls" 20 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver 27 int "Completion queue size for blocking calls" 30 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver
|
/Zephyr-Core-3.5.0/drivers/can/ |
D | Kconfig.loopback | 28 The TX thread calls the callbacks of the receiver 36 The TX thread calls the callbacks of the receiver 45 messages from this msgq and calls the respective receiver if the
|
/Zephyr-Core-3.5.0/subsys/sip_svc/ |
D | Kconfig | 28 The thread calls the callbacks of the requestor 36 The thread calls the callbacks of the requestor 74 layers using SMC/HVC calls.
|
/Zephyr-Core-3.5.0/tests/subsys/llext/hello_world/ |
D | CMakeLists.txt | 9 set(CMAKE_C_FLAGS "-mlong-calls" "-mthumb")
|
/Zephyr-Core-3.5.0/tests/arch/arm/arm_thread_swap/ |
D | README.txt | 1 Title: Test suite to verify the thread-swap (context-switch) and system-calls 34 This test verifies that the ARM mechanism for user system calls 38 - threads in system calls are using the privileged thread stack
|
/Zephyr-Core-3.5.0/doc/kernel/usermode/ |
D | syscalls.rst | 7 limited part of the memory map. System calls (may) allow user threads to 10 When defining system calls, it is very important to ensure that access to the 18 supervisor mode should never be exposed as system calls. Reserve these 21 This section describes how to declare new system calls and discusses a few 27 All system calls have the following components: 33 What gets generated is an inline function which either calls the 77 calls to generate. However, any generated system calls that don't actually have 80 unimplemented system calls. Data type definitions for APIs should not have 83 Any header file that declares system calls must include a special generated 136 code runs in user mode and system calls are unconditionally made. [all …]
|
D | overview.rst | 69 - We validate kernel or driver API calls with incorrect parameters that would 84 - We prevent invoking system calls to functions excluded by the kernel 91 defined system calls and interrupt handlers. 94 except to the extent to which this is supported by kernel system calls. 105 logic for creating the tables of valid kernel objects, defining system calls, 138 must be done on the thread's behalf through system calls, or specifically 161 user mode through system calls involves an extra layer of handler functions, 187 instantiate device drivers, or define system calls, regardless of what
|
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/shell/ |
D | ccp.rst | 15 The client can control the states of calls on a server using the call control 31 will take an index (starting from 0) as input. Joining calls require at least 2 67 read_current_calls :Read the current calls [<{instance_index, 160 can make calls, including calls from apps such as Skype, e.g. (smart)phones and 185 join :Join calls <id> <id> [<id> [<id> [...]]] 203 print_calls :Output all calls in the debug log
|
/Zephyr-Core-3.5.0/doc/develop/languages/c/ |
D | picolibc.rst | 20 the library internal system calls to the equivalent Zephyr API calls. 109 implemented in terms of stdio calls. This includes: 117 :c:macro:`CBPRINTF_PACKAGE_ARGS_ARE_TAGGED`), calls to cbpprintf will 147 this partition is included in any domain active during Picolibc calls.
|
/Zephyr-Core-3.5.0/lib/posix/ |
D | Kconfig.eventfd | 14 be used as an event wait/notify mechanism together with POSIX calls
|
D | Kconfig.pthread | 21 on calls to pthread_create() there is no need to worry about resource
|
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/mesh/ |
D | sar_cfg_cli.rst | 18 Configuration Server. Function calls :c:func:`bt_mesh_sar_cfg_cli_transmitter_get` and 23 Configuration Server. Function calls :c:func:`bt_mesh_sar_cfg_cli_receiver_get` and
|
D | dfu_srv.rst | 69 At the end of the BLOB transfer, the Firmware Update Server calls its 76 ensure that it is ready for being applied. Once the image has been verified, the application calls 79 If the image can't be verified, the application calls :c:func:`bt_mesh_dfu_srv_rejected`.
|
/Zephyr-Core-3.5.0/drivers/sip_svc/ |
D | Kconfig.sip_smc_agilex | 10 Support for SDM mailbox fifo in Intel SoC FPGA Agilex via SMC calls.
|
/Zephyr-Core-3.5.0/subsys/logging/ |
D | Kconfig | 10 Global switch for the logger, when turned off log calls will not be
|
/Zephyr-Core-3.5.0/samples/userspace/syscall_perf/ |
D | README.rst | 8 calls the function directly.
|
/Zephyr-Core-3.5.0/doc/hardware/peripherals/ |
D | retained_mem.rst | 32 responsible for ensuring that the function calls do not conflict with each
|
/Zephyr-Core-3.5.0/samples/userspace/prod_consumer/ |
D | README.rst | 23 - Show how application-specific system calls are defined 26 - Show how to create application-specific system calls 53 We also demonstrate application-defined system calls, in the form of
|
/Zephyr-Core-3.5.0/drivers/spi/ |
D | Kconfig | 20 This option enables the asynchronous API calls. 27 This option enables the RTIO API calls. RTIO support is
|
D | Kconfig.sam | 29 API calls use to perform SPI transactions. This queue needs to be as deep
|