Home
last modified time | relevance | path

Searched refs:calls (Results 1 – 25 of 205) sorted by relevance

123456789

/Zephyr-latest/subsys/bluetooth/audio/
Dmedia_proxy.c29 struct media_proxy_pl_calls *calls; member
93 return mprx.local_player.calls->get_player_name(); in media_proxy_sctrl_get_player_name()
99 return mprx.local_player.calls->get_icon_id(); in media_proxy_sctrl_get_icon_id()
105 return mprx.local_player.calls->get_icon_url(); in media_proxy_sctrl_get_icon_url()
110 return mprx.local_player.calls->get_track_title(); in media_proxy_sctrl_get_track_title()
115 return mprx.local_player.calls->get_track_duration(); in media_proxy_sctrl_get_track_duration()
120 return mprx.local_player.calls->get_track_position(); in media_proxy_sctrl_get_track_position()
125 mprx.local_player.calls->set_track_position(position); in media_proxy_sctrl_set_track_position()
130 return mprx.local_player.calls->get_playback_speed(); in media_proxy_sctrl_get_playback_speed()
135 mprx.local_player.calls->set_playback_speed(speed); in media_proxy_sctrl_set_playback_speed()
[all …]
Dmpl.c260 .calls = { 0 },
2397 media_player.calls.get_player_name = get_player_name; in media_proxy_pl_init()
2399 media_player.calls.get_icon_id = get_icon_id; in media_proxy_pl_init()
2401 media_player.calls.get_icon_url = get_icon_url; in media_proxy_pl_init()
2402 media_player.calls.get_track_title = get_track_title; in media_proxy_pl_init()
2403 media_player.calls.get_track_duration = get_track_duration; in media_proxy_pl_init()
2404 media_player.calls.get_track_position = get_track_position; in media_proxy_pl_init()
2405 media_player.calls.set_track_position = set_track_position; in media_proxy_pl_init()
2406 media_player.calls.get_playback_speed = get_playback_speed; in media_proxy_pl_init()
2407 media_player.calls.set_playback_speed = set_playback_speed; in media_proxy_pl_init()
[all …]
DKconfig.ccp17 Bearer Service (TBS) client to control calls on a remote device.
42 the Telephone Bearer Service (TBS) to hold and control calls on a device.
Dtbs.c75 struct bt_tbs_call calls[CONFIG_BT_TBS_MAX_CALLS]; member
172 for (int i = 0; i < ARRAY_SIZE(svc_insts[i].calls); i++) { in lookup_call_in_inst()
173 if (inst->calls[i].index == call_index) { in lookup_call_in_inst()
174 return &inst->calls[i]; in lookup_call_in_inst()
322 for (size_t j = 0; j < ARRAY_SIZE(svc_insts[i].calls); j++) { in lookup_inst_by_uri_scheme()
498 for (size_t i = 0; i < ARRAY_SIZE(inst->calls); i++) { in call_alloc()
499 if (inst->calls[i].index == BT_TBS_FREE_CALL_INDEX) { in call_alloc()
500 free_call = &inst->calls[i]; in call_alloc()
532 const struct bt_tbs_call *calls; in net_buf_put_call_states_by_inst() local
535 calls = inst->calls; in net_buf_put_call_states_by_inst()
[all …]
/Zephyr-latest/tests/benchmarks/sched/
DREADME.rst11 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-latest/drivers/mspi/
DKconfig20 This option enables the asynchronous API calls.
44 enables mspi_xip_config calls in device drivers.
50 enables mspi_scramble_config calls in device drivers.
55 Enables mspi_timing_config calls in device drivers for those
/Zephyr-latest/samples/userspace/syscall_perf/
DREADME.rst4 Measure performance overhead of a system calls compared to direct function calls.
11 calls the function directly.
/Zephyr-latest/doc/connectivity/networking/
Dnetwork_tracing.rst10 User can enable network core stack and socket API calls tracing.
23 API calls are made and what parameters the API calls are using and returning.
/Zephyr-latest/drivers/can/
DKconfig.loopback28 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-latest/subsys/secure_storage/
DKconfig37 It calls into the transform and store modules, which
54 Increasing this value increases the stack usage when serving PSA ITS API calls.
61 Zephyr's ITS implementation calls into it.
71 Zephyr's ITS implementation calls into it.
82 bool "PS calls directly into the ITS"
84 The PS API doesn't have an implementation of its own, and directly calls into the ITS API.
/Zephyr-latest/subsys/sip_svc/
DKconfig28 The thread calls the callbacks of the requestor
36 The thread calls the callbacks of the requestor
74 layers using SMC/HVC calls.
/Zephyr-latest/lib/posix/options/
DKconfig.compat15 be used as an event wait/notify mechanism together with POSIX calls
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dccp.rst6 The Call Control Server is a role that typically resides on devices that can make calls,
7 including calls from apps such as Skype, e.g. (smart)phones and PCs,
Dtbs.rst15 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,
159 can make calls, including calls from apps such as Skype, e.g. (smart)phones and
186 join :Join calls <id> <id> [<id> [<id> [...]]]
204 print_calls :Output all calls in the debug log
/Zephyr-latest/tests/arch/arm/arm_thread_swap/
DREADME.txt1 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-latest/doc/kernel/usermode/
Dsyscalls.rst7 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 …]
Doverview.rst69 - 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 kernel-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-latest/doc/develop/languages/c/
Dpicolibc.rst20 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-latest/doc/connectivity/bluetooth/api/mesh/
Dsar_cfg_cli.rst18 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
/Zephyr-latest/doc/hardware/peripherals/
Ddma.rst40 ISR-allowable calls. Many drivers choose to create a simple static descriptor array per channel with
47 the form of API calls. Every driver is expected to maintain its own channel state tracking. The busy
50 A diagram, showing those expected possible state transitions and their API calls is provided here
/Zephyr-latest/drivers/sip_svc/
DKconfig.sip_smc_agilex10 Support for SDM mailbox fifo in Intel SoC FPGA Agilex via SMC calls.
/Zephyr-latest/cmake/linker/
Dlinker_flags_template.cmake47 # Linker flag for disabling relaxation of address optimization for jump calls.
50 # Linker flag for enabling relaxation of address optimization for jump calls.
/Zephyr-latest/drivers/i3c/
DKconfig146 int "Submission queue size for blocking calls"
149 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver
156 int "Completion queue size for blocking calls"
159 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver
/Zephyr-latest/soc/nordic/common/
DKconfig33 calls mram_no_latency_sync_release().
/Zephyr-latest/subsys/logging/
DKconfig10 Global switch for the logger, when turned off log calls will not be

123456789