Home
last modified time | relevance | path

Searched refs:dstAdjustmentMillis (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
DTimeZoneLookupHelper.java141 Integer dstAdjustmentMillis = nitzData.getDstAdjustmentMillis(); in lookupByNitzCountry() local
142 if (dstAdjustmentMillis == null) { in lookupByNitzCountry()
149 boolean isDst = dstAdjustmentMillis != 0; in lookupByNitzCountry()
175 Integer dstAdjustmentMillis = nitzData.getDstAdjustmentMillis(); in lookupByNitz() local
176 Boolean isDst = dstAdjustmentMillis == null ? null : dstAdjustmentMillis != 0; in lookupByNitz()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DNitzData.java116 Integer dstAdjustmentMillis = null; in parse() local
118 dstAdjustmentMillis = dstAdjustmentHours * MS_PER_HOUR; in parse()
130 return new NitzData(nitz, totalUtcOffsetMillis, dstAdjustmentMillis, in parse()
DServiceStateTracker.java3853 Integer dstAdjustmentMillis = lastNitzData.getDstAdjustmentMillis(); in fixUnknownMcc() local
3854 isDst = (dstAdjustmentMillis != null) && (dstAdjustmentMillis != 0); in fixUnknownMcc()