Home
last modified time | relevance | path

Searched refs:tz (Results 1 – 10 of 10) sorted by relevance

/base/global/i18n/tools/
Ddata_process.py36 tz = re.search(tz_pattern, line).group()
38 timezones = tz[1:-1].split(",")
58 for tz in tzs:
59 group_wn.add(tz)
61 for tz in tzs:
62 group_en.add(tz)
64 for tz in tzs:
65 group_ws.add(tz)
67 for tz in tzs:
68 group_es.add(tz)
/base/time/time_service/services/time/src/
Dtime_zone_info.cpp89 struct timezone tz {}; in SetTimezoneToKernel() struct
90 tz.tz_minuteswest = localTime->tm_gmtoff / HOUR_TO_MIN; in SetTimezoneToKernel()
91 tz.tz_dsttime = 0; in SetTimezoneToKernel()
92 int result = settimeofday(nullptr, &tz); in SetTimezoneToKernel()
/base/hiviewdfx/hiview/plugins/freeze_detector/
Dresolver.cpp137 struct timezone tz; in GetTimeZone() local
138 if (gettimeofday(&tv, &tz) != 0) { in GetTimeZone()
143 int hour = (-tz.tz_minuteswest) / MINUTES_IN_HOUR; in GetTimeZone()
152 int minute = (-tz.tz_minuteswest) % MINUTES_IN_HOUR; in GetTimeZone()
/base/hiviewdfx/hiview/base/utility/
Dtime_util.cpp84 char tz[tzBufSize]; in GetTimeZone() local
85 auto ret = strftime(tz, tzBufSize, "%z", &tmLocal); in GetTimeZone()
87 return std::string(tz); in GetTimeZone()
/base/hiviewdfx/hiview/base/event_store/include/
Ddoc_query.h43 uint8_t tz; member
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/
Dhisysevent_record_c.h34 char tz[MAX_LENGTH_OF_TIME_ZONE]; member
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/
Dhisysevent_record_convertor.cpp43 return OHOS::HiviewDFX::StringUtil::CopyCString(recordStruct.tz, recordObj.GetTimeZone(), in ConvertTimeZone()
/base/hiviewdfx/hiview/base/event_store/dao/
Ddoc_query.cpp83 value = static_cast<int64_t>(innerField.tz); in IsContainInnerCond()
/base/hiviewdfx/hisysevent/interfaces/rust/innerkits/src/
Dsys_event_manager.rs106 tz: [c_char; MAX_LENGTH_OF_TIME_ZONE], field
171 std::str::from_utf8(&self.tz).expect("need valid time zone array") in get_time_zone()
/base/hiviewdfx/hisysevent/test/moduletest/common/
Dhisysevent_manager_c_test.cpp78 record.tz, record.time, record.pid, record.tid, record.uid, in RecordBaseParamPrint()
90 ASSERT_TRUE(strlen(record.tz) > 0); in OnQueryTest()