Searched defs:minTime (Results 1 - 3 of 3) sorted by relevance

/system/chre/apps/chqts/src/general_test/
H A Dbasic_sensor_test_base.cc281 uint64_t *minTime = nullptr; local
285 minTime = &mPreTimestamp;
288 minTime = &mFirstEventTimestamp;
291 minTime = &mLastEventTimestamp;
301 (*minTime > eventDuration + kEventLoopSlack) ?
302 (*minTime - eventDuration - kEventLoopSlack) : 0;
306 ": minTime %" PRIu64 " eventDuration %" PRIu64
309 *minTime, eventDuration, kEventLoopSlack);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DZoneOffsetPeriod.java55 Instant minTime, Instant maxTime) {
57 long startMillis = minTime.toEpochMilli();
63 // from minTime to maxTime.
72 // The zone has no next transition after minTime, so we create a ZoneOffsetPeriod
73 // from minTime to maxTime.
81 return new ZoneOffsetPeriod(minTime, end, offsets[0], offsets[1], longName);
54 create(TimeZoneNames timeZoneNames, BasicTimeZone timeZone, Instant minTime, Instant maxTime) argument
/system/core/logd/
H A DLogStatistics.cpp689 uint64_t minTime = UINT64_MAX; local
712 if (minTime > oldest) minTime = oldest;
736 if ((maxTime > minTime) && ((maxTime -= minTime) < totalSize) &&

Completed in 333 milliseconds