/Zephyr-latest/scripts/footprint/ |
D | size_report | 69 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/ |
D | ipc_icmsg_me_initiator.c | 26 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,
|
D | ipc_icmsg_me_follower.c | 122 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,
|
D | ipc_rpmsg_static_vrings.c | 105 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/ |
D | rpmsg_service.c | 36 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/ |
D | main.c | 50 .bound = ipc0A_ept_bound, 122 .bound = ipc0B_ept_bound, 202 .bound = ipc1_ept_bound,
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/multi_endpoint/src/ |
D | main.c | 50 .bound = ipc0A_ept_bound, 128 .bound = ipc0B_ept_bound, 199 .bound = ipc1_ept_bound,
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | op_agg_cli.rst | 19 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
|
D | op_agg_srv.rst | 19 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/ |
D | main.c | 50 .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/ |
D | main.c | 50 .bound = ipc0A_ept_bound, 122 .bound = ipc0B_ept_bound, 217 .bound = ipc1_ept_bound,
|
/Zephyr-latest/include/zephyr/ipc/ |
D | ipc_rpmsg.h | 56 volatile bool bound; member
|
D | ipc_service.h | 152 void (*bound)(void *priv); member
|
/Zephyr-latest/subsys/ipc/ipc_service/lib/ |
D | icmsg.c | 237 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()
|
D | ipc_rpmsg.c | 41 ept->bound = true; in ns_bind_cb()
|
/Zephyr-latest/doc/services/ipc/ipc_service/ |
D | ipc_service.rst | 81 .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/ |
D | Kconfig.stm32_hal | 147 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/ |
D | log_backend_ipc_service.c | 57 .bound = bound_cb, in backend_ipc_service_init()
|
/Zephyr-latest/samples/subsys/logging/multidomain/remote/src/ |
D | ipc_service.c | 39 .bound = ipc1_ept_bound,
|
/Zephyr-latest/samples/subsys/logging/multidomain/src/ |
D | ipc_service.c | 40 .bound = ipc1_ept_bound,
|
/Zephyr-latest/subsys/logging/ |
D | log_link_ipc_service.c | 59 .bound = bound_cb, in link_ipc_service_init()
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/remote/src/ |
D | main.c | 121 .bound = ep_bound,
|
/Zephyr-latest/doc/connectivity/networking/conn_mgr/ |
D | implementation.rst | 29 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/ |
D | icmsg_v1.c | 214 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/ |
D | Kconfig | 13 upper bound because we should expect that eventfd_read() and
|