Home
last modified time | relevance | path

Searched refs:tm (Results 1 – 25 of 99) sorted by relevance

1234

/base/security/device_security_level/baselib/utils/src/
Dutils_datetime.c60 struct tm tm; in GetDateTimeByMillisecondSince1970() local
62 localtime_r(&time, &tm); in GetDateTimeByMillisecondSince1970()
64 datetime->year = (uint16_t)(tm.tm_year + 1900); // need add 1900 in GetDateTimeByMillisecondSince1970()
65 datetime->mon = (uint16_t)(tm.tm_mon + 1); in GetDateTimeByMillisecondSince1970()
66 datetime->day = (uint16_t)tm.tm_mday; in GetDateTimeByMillisecondSince1970()
67 datetime->hour = (uint16_t)tm.tm_hour; in GetDateTimeByMillisecondSince1970()
68 datetime->min = (uint16_t)tm.tm_min; in GetDateTimeByMillisecondSince1970()
69 datetime->sec = (uint16_t)tm.tm_sec; in GetDateTimeByMillisecondSince1970()
/base/update/updater/test/unittest/applypatch_test/
Dtransfer_manager_unittest.cpp53 TransferManagerPtr tm = TransferManager::GetTransferManagerInstance(); variable
55 tm->CheckResult(CommandResult::NEED_RETRY, cmd, CommandType::ZERO);
56 TransferManager::ReleaseTransferManagerInstance(tm);
61 TransferManagerPtr tm = TransferManager::GetTransferManagerInstance(); variable
62 tm->ReloadForRetry();
63 TransferManager::ReleaseTransferManagerInstance(tm);
Dall_cmd_unittest.cpp40 int AllCmdUnitTestMove(int &fd, std::vector<std::string> &allCmd, TransferManager &tm);
103 TransferManager *tm = TransferManager::GetTransferManagerInstance(); variable
127 rc = tm->CommandsParser(fd, transferLines);
131 … AllCmdUnitTest::AllCmdUnitTestMove(int &fd, std::vector<std::string> &allCmd, TransferManager &tm) in AllCmdUnitTestMove() argument
151 bool result = tm.CommandsParser(fd, allCmd); in AllCmdUnitTestMove()
169 TransferManagerPtr tm = TransferManager::GetTransferManagerInstance(); variable
196 result = tm->CommandsParser(fd, allCmd);
201 EXPECT_EQ(AllCmdUnitTestMove(fd, allCmd, *tm), 0);
Dcommandsfunction_unittest.cpp67 TransferManagerPtr tm = TransferManager::GetTransferManagerInstance(); variable
69 tm->GetGlobalParams()->storeBase = "data/updater/updater/tmp/cmdtest";
84 tm->GetGlobalParams()->storeCreated = 0;
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
Dreminder_request_calendar_test.cpp43 std::shared_ptr<ReminderRequestCalendar> CreateCalendar(tm &nowTime) in CreateCalendar()
47 tm *tmp = localtime(&now); in CreateCalendar()
95 struct tm nowTime;
110 struct tm nowTime;
125 struct tm nowTime;
142 tm *tmp = localtime(&now);
144 struct tm nowTime = *tmp;
185 tm *tmp = localtime(&now);
187 tm nowTime = *tmp;
216 tm *tmp = localtime(&now);
[all …]
/base/telephony/telephony_data/common/include/
Dtime_util.h24 void FormatDate(std::string &date, const tm *ltm) in FormatDate()
71 struct tm tm = { 0 }; in GetCurrentTime() local
72 struct tm *ltm = localtime_r(&now, &tm); in GetCurrentTime()
/base/update/updater/services/log/
Dlog.cpp86 struct tm tm {}; in GetFormatTime() struct
89 localtime_r(&tv.tv_sec, &tm); in GetFormatTime()
91 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec, in GetFormatTime()
/base/notification/common_event_service/test/systemtest/common/ces/common_event_services_publish_ordered_system_test/
Dcommon_event_services_publish_ordered_system_test.cpp161 struct tm startTime = {0}; in ProcessSubscriberTestCase3()
163 struct tm doingTime = {0}; in ProcessSubscriberTestCase3()
192 struct tm startTime = {0}; in ProcessSubscriberTestCase5()
194 struct tm doingTime = {0}; in ProcessSubscriberTestCase5()
222 struct tm startTime = {0}; in AsyncProcess()
224 struct tm doingTime = {0}; in AsyncProcess()
318 struct tm startTime = {0}; in ProcessSubscriberAnotherTestCase5()
320 struct tm doingTime = {0}; in ProcessSubscriberAnotherTestCase5()
350 struct tm startTime = {0}; in AsyncProcess()
352 struct tm doingTime = {0}; in AsyncProcess()
[all …]
/base/notification/distributed_notification_service/interfaces/inner_api/
Dreminder_request_calendar.h52 ReminderRequestCalendar(const tm &dateTime,
159 …xtDay(const uint16_t &settedYear, const uint8_t &settedMonth, const tm &now, const tm &target) con…
161 uint64_t GetNextTriggerTimeAsRepeatReminder(const tm &nowTime, const tm &tarTime) const;
177 void InitDateTime(const tm &dateTime);
190 tm dateTime_ = {
/base/notification/common_event_service/services/test/moduletest/common_event_services_publish_ordered_module_test/
Dcommon_event_services_publish_ordered_module_test.cpp171 struct tm startTime = {0}; in ProcessSubscriberTestCase3()
173 struct tm doingTime = {0}; in ProcessSubscriberTestCase3()
204 struct tm startTime = {0}; in ProcessSubscriberTestCase5()
206 struct tm doingTime = {0}; in ProcessSubscriberTestCase5()
235 struct tm startTime = {0}; in AsyncProcess()
237 struct tm doingTime = {0}; in AsyncProcess()
331 struct tm startTime = {0}; in ProcessSubscriberAnotherTestCase5()
333 struct tm doingTime = {0}; in ProcessSubscriberAnotherTestCase5()
363 struct tm startTime = {0}; in AsyncProcess()
365 struct tm doingTime = {0}; in AsyncProcess()
[all …]
/base/telephony/sms_mms/utils/
Dsms_common_utils.cpp139 struct tm tmObj; in ConvertTime()
140 if (memset_s(&tmObj, sizeof(struct tm), 0x00, sizeof(tm)) != EOK) { in ConvertTime()
162 struct tm tmObj; in GetDisplayTime()
164 if (memset_s(&tmObj, sizeof(struct tm), 0x00, sizeof(tm)) != EOK) { in GetDisplayTime()
/base/notification/common_event_service/tools/test/systemtest/cem/
Dcommon_event_command_publish_system_test.cpp176 struct tm startTime = {0};
180 struct tm doingTime = {0};
236 struct tm startTime = {0};
240 struct tm doingTime = {0};
296 struct tm startTime = {0};
300 struct tm doingTime = {0};
356 struct tm startTime = {0};
360 struct tm doingTime = {0};
/base/hiviewdfx/hiview/base/utility/
Dtime_util.cpp28 struct tm tmFormat { 0 }; in StrToTimeStamp()
65 struct tm result {}; in TimestampFormatToDate()
79 struct tm tmLocal; in GetTimeZone()
96 struct tm *l = std::localtime(&now); in Get0ClockStampMs()
131 std::tm t = *std::localtime(&tt); in FormatTime()
/base/notification/common_event_service/test/systemtest/common/ces/common_event_services_system_test/
Dcommon_event_services_system_test.cpp679 struct tm startTime = {0};
695 struct tm doingTime = {0};
715 struct tm startTime = {0};
734 struct tm doingTime = {0};
754 struct tm startTime = {0};
772 struct tm doingTime = {0};
792 struct tm startTime = {0};
812 struct tm doingTime = {0};
832 struct tm startTime = {0};
852 struct tm doingTime = {0};
[all …]
/base/global/i18n_lite/frameworks/i18n/include/
Ddate_time_format_impl.h79 …void Format(const struct tm &time, const std::string &pattern, std::string &appendTo, I18nStatus &…
81 …void Process(const tm &time, std::string &append, char pre, uint32_t count, I18nStatus &status) c…
82 …void ProcessTime(const tm &time, std::string &append, char pre, uint32_t count, I18nStatus &status…
83 void ProcessWeekDayYear(const tm &time, std::string &appendTo, char pre,
/base/account/os_account/services/accountmgr/test/moduletest/os_account/
Dos_account_manager_service_subscribe_module_test.cpp116 struct tm startTime = {0};
118 struct tm doingTime = {0};
168 struct tm startTime = {0};
170 struct tm doingTime = {0};
/base/notification/distributed_notification_service/test/fuzztest/reminderrequestcalendar_fuzzer/
Dreminderrequestcalendar_fuzzer.cpp35 struct tm nowTime; in DoSomethingInterestingWithMyAPI()
66 struct tm target; in DoSomethingInterestingWithMyAPI()
71 struct tm tarTime; in DoSomethingInterestingWithMyAPI()
/base/notification/common_event_service/services/include/
Dhistory_event_record.h25 struct tm recordTime {};
58 struct tm recordTime {};
/base/hiviewdfx/hilog_lite/services/hilogcat/
Dhiview_logcat.c58 struct tm *info = NULL; in main()
59 struct tm nowTime = {0}; in main()
/base/time/time_service/services/
Dtime_system_ability.cpp406 struct tm timestr{}; in DumpAllTimeInfo()
485 struct tm tm {}; in SetRtcTime() struct
486 struct tm *gmtime_res = nullptr; in SetRtcTime()
503 gmtime_res = gmtime_r(&sec, &tm); in SetRtcTime()
505 rtc.tm_sec = tm.tm_sec; in SetRtcTime()
506 rtc.tm_min = tm.tm_min; in SetRtcTime()
507 rtc.tm_hour = tm.tm_hour; in SetRtcTime()
508 rtc.tm_mday = tm.tm_mday; in SetRtcTime()
509 rtc.tm_mon = tm.tm_mon; in SetRtcTime()
510 rtc.tm_year = tm.tm_year; in SetRtcTime()
[all …]
/base/notification/distributed_notification_service/frameworks/ans/src/
Dreminder_request_calendar.cpp48 ReminderRequestCalendar::ReminderRequestCalendar(const tm &dateTime, in ReminderRequestCalendar()
115 const uint16_t &settedYear, const uint8_t &settedMonth, const tm &now, const tm &target) const in GetNextDay()
122 struct tm setTime; in GetNextDay()
131 struct tm nowTime; in GetNextDay()
156 struct tm nowTime; in GetNextTriggerTime()
159 struct tm tarTime; in GetNextTriggerTime()
186 uint64_t ReminderRequestCalendar::GetNextTriggerTimeAsRepeatReminder(const tm &nowTime, const tm &t… in GetNextTriggerTimeAsRepeatReminder()
220 struct tm tar; in GetTimeInstantMilli()
250 void ReminderRequestCalendar::InitDateTime(const tm &dateTime) in InitDateTime()
/base/hiviewdfx/faultloggerd/common/dfxutil/
Ddfx_util.cpp100 auto tm = std::localtime(&now); in GetCurrentTimeStr() local
102 if (tm == nullptr || strftime(seconds, sizeof(seconds) - 1, "%Y-%m-%d %H:%M:%S", tm) == 0) { in GetCurrentTimeStr()
/base/notification/common_event_service/services/test/unittest/
Dcommon_event_publish_system_event_test.cpp113 struct tm curTime {0};
143 struct tm curTime {0};
174 struct tm curTime{0};
225 struct tm curTime{0};
/base/global/i18n_lite/frameworks/i18n/src/
Ddate_time_format_impl.cpp150 struct tm tmStruct = {0}; in Format()
151 tm *tmPtr = &tmStruct; in Format()
153 const tm time = *tmPtr; in Format()
157 void DateTimeFormatImpl::Format(const struct tm &time, const string &pattern, string &appendTo, in Format()
241 void DateTimeFormatImpl::Process(const tm &time, string &appendTo, char pre, uint32_t count, I18nSt… in Process()
279 void DateTimeFormatImpl::ProcessWeekDayYear(const tm &time, string &appendTo, char pre, in ProcessWeekDayYear()
334 void DateTimeFormatImpl::ProcessTime(const tm &time, string &appendTo, char pre, in ProcessTime()
452 struct tm tmStruct = { 0 }; in Get12HourTimeWithoutAmpm()
453 tm *tmPtr = &tmStruct; in Get12HourTimeWithoutAmpm()
455 const tm time = *tmPtr; in Get12HourTimeWithoutAmpm()
/base/account/os_account/services/accountmgr/test/moduletest/app_account/
Dapp_account_manager_service_subscribe_module_test.cpp268 struct tm startTime = {0};
272 struct tm doingTime = {0};
430 struct tm startTime = {0};
434 struct tm doingTime = {0};
521 struct tm startTime = {0};
525 struct tm doingTime = {0};
609 struct tm startTime = {0};
613 struct tm doingTime = {0};
700 struct tm startTime = {0};
704 struct tm doingTime = {0};

1234