Home
last modified time | relevance | path

Searched refs:event_timestamp (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.6.0/subsys/net/lib/lwm2m/
Dlwm2m_observation.h19 int64_t event_timestamp; /* Timestamp for trig next Notify */ member
Dlwm2m_engine.c599 if (!obs->event_timestamp) { in check_notifications()
603 if (obs->event_timestamp < next) { in check_notifications()
604 next = obs->event_timestamp; in check_notifications()
607 if (timestamp < obs->event_timestamp) { in check_notifications()
620 obs->event_timestamp = in check_notifications()
Dlwm2m_observation.c369 if (!obs->event_timestamp || obs->event_timestamp > timestamp) { in lwm2m_notify_observer_path()
371 obs->event_timestamp = timestamp; in lwm2m_notify_observer_path()
437 obs->event_timestamp = obs->last_timestamp + MSEC_PER_SEC * att_pmax; in engine_observe_node_init()
439 obs->event_timestamp = 0; in engine_observe_node_init()
953 obs->event_timestamp = timestamp; in lwm2m_engine_observer_timestamp_update()
/Zephyr-Core-3.6.0/tests/net/lib/lwm2m/lwm2m_engine/src/
Dmain.c240 obs.event_timestamp = k_uptime_get() + 1000U; in ZTEST()