Lines Matching refs:timestampSec
50 updateRegisteredAlarmTime_l(top->timestampSec); in setStatsCompanionService()
60 if (alarm->timestampSec < 1) { in add()
66 VLOG("Adding alarm with time %u", alarm->timestampSec); in add()
69 alarm->timestampSec + mMinUpdateTimeSec < mRegisteredAlarmTimeSec) { in add()
70 updateRegisteredAlarmTime_l(alarm->timestampSec); in add()
80 VLOG("Removing alarm with time %u", alarm->timestampSec); in remove()
88 uint32_t soonestAlarmTimeSec = mPq.top()->timestampSec; in remove()
98 uint32_t timestampSec) { in popSoonerThan() argument
99 VLOG("Removing alarms with time <= %u", timestampSec); in popSoonerThan()
103 for (sp<const InternalAlarm> t = mPq.top(); t != nullptr && t->timestampSec <= timestampSec; in popSoonerThan()
115 updateRegisteredAlarmTime_l(mPq.top()->timestampSec); in popSoonerThan()
121 void AlarmMonitor::updateRegisteredAlarmTime_l(uint32_t timestampSec) { in updateRegisteredAlarmTime_l() argument
122 VLOG("Updating reg alarm time to %u", timestampSec); in updateRegisteredAlarmTime_l()
123 mRegisteredAlarmTimeSec = timestampSec; in updateRegisteredAlarmTime_l()