Lines Matching refs:systemTimezone
241 std::string systemTimezone = ReadSystemParameter(TIMEZONE_KEY, SYS_PARAM_LEN);
242 if (systemTimezone.length() == 0) {
243 systemTimezone = DEFAULT_TIMEZONE;
253 return Match(zones, nitzData, systemTimezone);
258 std::string systemTimezone = ReadSystemParameter(TIMEZONE_KEY, SYS_PARAM_LEN);
259 if (systemTimezone.length() == 0) {
260 systemTimezone = DEFAULT_TIMEZONE;
272 CountryResult result = Match(validZones, nitzData, systemTimezone);
275 result = Match(validZones, newNITZData, systemTimezone);
455 CountryResult ZoneUtil::Match(std::vector<std::string> &zones, NITZData &nitzData, std::string &systemTimezone)
476 if (strcmp(zoneId.c_str(), systemTimezone.c_str()) == 0) {
477 matchedZoneId = systemTimezone;