Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_observation.h19 int64_t event_timestamp; /* Timestamp for trig next Notify */ member
Dlwm2m_engine.c603 if (!obs->event_timestamp) { in check_notifications()
607 if (obs->event_timestamp < next) { in check_notifications()
608 next = obs->event_timestamp; in check_notifications()
611 if (timestamp < obs->event_timestamp) { in check_notifications()
624 obs->event_timestamp = in check_notifications()
Dlwm2m_observation.c386 if (!obs->event_timestamp || obs->event_timestamp > timestamp) { in lwm2m_notify_observer_path()
388 obs->event_timestamp = timestamp; in lwm2m_notify_observer_path()
454 obs->event_timestamp = obs->last_timestamp + MSEC_PER_SEC * att_pmax; in engine_observe_node_init()
456 obs->event_timestamp = 0; in engine_observe_node_init()
970 obs->event_timestamp = timestamp; in lwm2m_engine_observer_timestamp_update()
/Zephyr-latest/tests/net/lib/lwm2m/lwm2m_engine/src/
Dmain.c242 obs.event_timestamp = k_uptime_get() + 1000U; in ZTEST()