Searched refs:tz (Results 1 – 10 of 10) sorted by relevance
/base/global/i18n/tools/ |
D | data_process.py | 36 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/ |
D | time_zone_info.cpp | 89 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/ |
D | resolver.cpp | 137 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/ |
D | time_util.cpp | 84 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/ |
D | doc_query.h | 43 uint8_t tz; member
|
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/ |
D | hisysevent_record_c.h | 34 char tz[MAX_LENGTH_OF_TIME_ZONE]; member
|
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/ |
D | hisysevent_record_convertor.cpp | 43 return OHOS::HiviewDFX::StringUtil::CopyCString(recordStruct.tz, recordObj.GetTimeZone(), in ConvertTimeZone()
|
/base/hiviewdfx/hiview/base/event_store/dao/ |
D | doc_query.cpp | 83 value = static_cast<int64_t>(innerField.tz); in IsContainInnerCond()
|
/base/hiviewdfx/hisysevent/interfaces/rust/innerkits/src/ |
D | sys_event_manager.rs | 106 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/ |
D | hisysevent_manager_c_test.cpp | 78 record.tz, record.time, record.pid, record.tid, record.uid, in RecordBaseParamPrint() 90 ASSERT_TRUE(strlen(record.tz) > 0); in OnQueryTest()
|