Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 64) sorted by relevance

123

/Zephyr-latest/scripts/footprint/
Dsize_report69 for bound in ranges:
70 if bound['start'] <= sym['st_value'] <= bound['end']:
71 return bound
154 bound = is_symbol_in_ranges(sym, rom_addr_ranges)
155 if bound:
158 entry['section'] = bound['name']
163 bound = is_symbol_in_ranges(sym, ram_addr_ranges)
164 if bound:
167 entry['section'] = bound['name']
172 bound = is_symbol_in_ranges(sym, unassigned_addr_ranges)
[all …]
/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icmsg_me_initiator.c26 static void bound(void *priv) in bound() function
58 if (ept && ept->cb.bound) { in received()
59 ept->cb.bound(ept->priv); in received()
68 .bound = bound,
Dipc_icmsg_me_follower.c122 if (ept->cb.bound) { in bind_ept()
123 ept->cb.bound(ept->priv); in bind_ept()
129 static void bound(void *priv) in bound() function
186 .bound = bound,
Dipc_rpmsg_static_vrings.c105 if (rpmsg_ept->bound == true) { in check_endpoints_freed()
160 rpmsg_ept->bound = true; in advertise_ept()
214 if (ept->cb->bound) { in bound_cb()
215 ept->cb->bound(ept->priv); in bound_cb()
238 if (!ept->bound) { in ept_cb()
239 ept->bound = true; in ept_cb()
391 rpmsg_ept->bound = false; in register_ept_on_host()
427 rpmsg_ept->bound = false; in register_ept_on_remote()
/Zephyr-latest/subsys/ipc/rpmsg_service/
Drpmsg_service.c36 volatile bool bound; member
66 endpoints[i].bound = true; in ns_bind_cb()
154 return endpoints[endpoint_id].bound; in rpmsg_service_endpoint_is_bound()
/Zephyr-latest/samples/subsys/ipc/ipc_service/multi_endpoint/remote/src/
Dmain.c50 .bound = ipc0A_ept_bound,
122 .bound = ipc0B_ept_bound,
202 .bound = ipc1_ept_bound,
/Zephyr-latest/samples/subsys/ipc/ipc_service/multi_endpoint/src/
Dmain.c50 .bound = ipc0A_ept_bound,
128 .bound = ipc0B_ept_bound,
199 .bound = ipc1_ept_bound,
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dop_agg_cli.rst19 The Opcodes Aggregator Client model is implicitly bound to the device key on initialization. It
20 should be bound to the same application keys as the client models that are used to produce the
Dop_agg_srv.rst19 The targeted server models should be bound to the same application key that is used
/Zephyr-latest/samples/subsys/ipc/ipc_service/static_vrings/src/
Dmain.c50 .bound = ipc0A_ept_bound,
128 .bound = ipc0B_ept_bound,
215 .bound = ipc1_ept_bound,
/Zephyr-latest/samples/subsys/ipc/ipc_service/static_vrings/remote/src/
Dmain.c50 .bound = ipc0A_ept_bound,
122 .bound = ipc0B_ept_bound,
217 .bound = ipc1_ept_bound,
/Zephyr-latest/include/zephyr/ipc/
Dipc_rpmsg.h56 volatile bool bound; member
Dipc_service.h152 void (*bound)(void *priv); member
/Zephyr-latest/subsys/ipc/ipc_service/lib/
Dicmsg.c237 if (dev_data->cb->bound) { in callback_process()
238 dev_data->cb->bound(dev_data->ctx); in callback_process()
309 if (dev_data->cb->bound) { in callback_process()
310 dev_data->cb->bound(dev_data->ctx); in callback_process()
Dipc_rpmsg.c41 ept->bound = true; in ns_bind_cb()
/Zephyr-latest/doc/services/ipc/ipc_service/
Dipc_service.rst81 .bound = bound_cb,
96 /* Wait for endpoint bound (bound_cb called) */
135 .bound = bound_cb,
149 /* Wait for endpoint bound (bound_cb called) */
/Zephyr-latest/drivers/ethernet/
DKconfig.stm32_hal147 int "Lower bound of clock frequency adjustment (in percent)"
151 Specifies lower bound of PTP clock rate adjustment.
154 int "Upper bound of clock frequency adjustment (in percent)"
158 Specifies upper bound of PTP clock rate adjustment.
/Zephyr-latest/subsys/logging/backends/
Dlog_backend_ipc_service.c57 .bound = bound_cb, in backend_ipc_service_init()
/Zephyr-latest/samples/subsys/logging/multidomain/remote/src/
Dipc_service.c39 .bound = ipc1_ept_bound,
/Zephyr-latest/samples/subsys/logging/multidomain/src/
Dipc_service.c40 .bound = ipc1_ept_bound,
/Zephyr-latest/subsys/logging/
Dlog_link_ipc_service.c59 .bound = bound_cb, in link_ipc_service_init()
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/remote/src/
Dmain.c121 .bound = ep_bound,
/Zephyr-latest/doc/connectivity/networking/conn_mgr/
Dimplementation.rst29 Once the iface is bound, :ref:`connectivity control API <conn_mgr_control_api>` functions can be ca…
35 …nding structure will contain a reference to the bound iface, the connectivity implementation it is…
37 …terated over to find out what (if any) connectivity implementation has been bound to a given iface.
41 A single connectivity implementation may be bound to multiple ifaces.
162 A defined connectivity implementation may be bound to an iface by calling :c:macro:`CONN_MGR_BIND_C…
231 All connectivity implementations must keep bound iface state up to date.
319 The only exception is connectivity implementations that are meant to be bound to only a single ifac…
331 For example, do not use :c:func:`net_if_get_default` under the assumption that the bound iface will…
341 … Kconfig option to enable or disable the implementation without affecting bound iface availability.
343 …t include Connectivity Manager, as well as the iface that would have been bound to the implementat…
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/interoperability/
Dicmsg_v1.c214 if (dev_data->cb->bound) { in mbox_callback_process()
215 dev_data->cb->bound(dev_data->ctx); in mbox_callback_process()
/Zephyr-latest/tests/posix/eventfd/
DKconfig13 upper bound because we should expect that eventfd_read() and

123