Home
last modified time | relevance | path

Searched refs:observation (Results 1 – 11 of 11) sorted by relevance

/Zephyr-Core-3.5.0/subsys/zbus/
Dzbus.c55 STRUCT_SECTION_FOREACH(zbus_channel_observation, observation) { in _zbus_init()
56 curr = observation->chan; in _zbus_init()
122 struct zbus_channel_observation *observation; in _zbus_vded_exec() local
141 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in _zbus_vded_exec()
144 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in _zbus_vded_exec()
146 const struct zbus_observer *obs = observation->obs; in _zbus_vded_exec()
333 struct zbus_channel_observation *observation; in zbus_obs_set_chan_notification_mask() local
338 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in zbus_obs_set_chan_notification_mask()
341 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in zbus_obs_set_chan_notification_mask()
343 if (observation->obs == obs) { in zbus_obs_set_chan_notification_mask()
[all …]
Dzbus_runtime_observers.c16 struct zbus_channel_observation *observation; in zbus_chan_add_obs() local
29 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in zbus_chan_add_obs()
31 __ASSERT(observation != NULL, "observation must be not NULL"); in zbus_chan_add_obs()
33 if (observation->obs == obs) { in zbus_chan_add_obs()
/Zephyr-Core-3.5.0/samples/subsys/zbus/hello_world/src/
Dmain.c105 struct zbus_channel_observation *observation; in print_channel_data_iterator() local
109 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in print_channel_data_iterator()
111 __ASSERT(observation != NULL, "observation must be not NULL"); in print_channel_data_iterator()
113 LOG_INF(" - %s", observation->obs->name); in print_channel_data_iterator()
/Zephyr-Core-3.5.0/doc/services/zbus/
Dindex.rst81 Channel observation structures define the relationship between a channel and its observers. For
82 every observation, a pair channel/observer. Developers can statically allocate observation using the
88 :alt: ZBus observation mask.
91 ZBus observation mask.
95 allocated (runtime observation). (a) shows that the observer and all observations are enabled. (b)
586 struct zbus_channel_observation *observation;
590 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation);
592 LOG_INF(" - %s", observation->obs->name);
/Zephyr-Core-3.5.0/subsys/net/lib/lwm2m/
DKconfig.ipso263 been operated since the last observation.
/Zephyr-Core-3.5.0/doc/kernel/
Dtimeutil.rst99 recently received second observation, and a skew that can adjust for
/Zephyr-Core-3.5.0/doc/releases/
Drelease-notes-3.5.rst849 * Fixed a possible notification stall in case of observation token change.
2171 observation. The observation enables us to increase the granularity of masking observation.
2176 the system using ZBus, making post-definition channel observation rely on the stack instead of
Drelease-notes-1.13.rst557 * :github:`8287` - LwM2M: Cancelling an observation doesn't work
Drelease-notes-2.7.rst1143 * :github:`38534` - lwm2m: add api to inspect observation state of resource/object
Drelease-notes-3.2.rst827 LwM2M observation, LwM2M message handling.
Drelease-notes-3.3.rst1088 * Fixed a bug causing incorrect ordering of the observation paths.