HomeSort by relevance Sort by last modified time
    Searched defs:timestampSec (Results 1 - 3 of 3) sorted by null

  /frameworks/base/cmds/statsd/src/anomaly/
AlarmMonitor.h 45 InternalAlarm(uint32_t timestampSec) : timestampSec(timestampSec) {
48 const uint32_t timestampSec;
53 return (a->timestampSec < b->timestampSec);
89 * with the same timestampSec, that alarm will still remain in the queue.
94 * Returns and removes all alarms whose timestamp <= the given timestampSec.
98 uint32_t timestampSec);
121 * Priority queue of alarms, prioritized by soonest alarm.timestampSec
    [all...]
DurationAnomalyTracker.cpp 41 uint32_t timestampSec = static_cast<uint32_t>((timestampNs -1) / NS_PER_SEC) + 1; // round up
52 sp<const InternalAlarm> alarm = new InternalAlarm{timestampSec};
67 if (itr->second != nullptr && timestampNs >= (int64_t)NS_PER_SEC * itr->second->timestampSec) {
  /frameworks/base/cmds/statsd/src/external/
StatsCompanionServicePuller.cpp 63 int32_t timestampSec = getWallClockSec();
69 tmp.entry_v1.sec = timestampSec;

Completed in 1013 milliseconds