Home | History | Annotate | Download | only in cdma

Lines Matching defs:zone

102      * are in. Keep the time zone information from the NITZ string so
103 * we can fix the time zone once know the country.
961 TimeZone zone = null;
962 // If the offset is (0, false) and the time zone property
963 // is set, use the time zone property rather than GMT.
968 // For NITZ string without time zone,
969 // need adjust time to reflect default time zone setting
970 zone = TimeZone.getDefault();
972 tzOffset = zone.getOffset(System.currentTimeMillis());
982 zone = getNitzTimeZone(mZoneOffset, mZoneDst, mZoneTime);
984 zone = TimeUtils.getTimeZone(mZoneOffset, mZoneDst, mZoneTime, isoCountryCode);
989 if (zone != null) {
991 setAndBroadcastNetworkSetTimeZone(zone.getID());
993 saveNitzTimeZone(zone.getID());
1159 for (String zone : zones) {
1160 TimeZone tz = TimeZone.getTimeZone(zone);
1391 // The zone offset received from NITZ is for current local time,
1400 TimeZone zone = null;
1408 zone = TimeZone.getTimeZone( tzname );
1413 if (zone == null) {
1417 zone = TimeUtils.getTimeZone(tzOffset, dst != 0,
1425 zone = getNitzTimeZone(tzOffset, (dst != 0), c.getTimeInMillis());
1430 if (zone == null) {
1441 if (zone != null) {
1443 setAndBroadcastNetworkSetTimeZone(zone.getID());
1445 saveNitzTimeZone(zone.getID());
1548 intent.putExtra("time-zone", zoneId);