/base/time/time_service/services/dfx/src/ |
D | time_sysevent.cpp | 28 void StatisticReporter(int32_t callerPid, int32_t callerUid, int32_t type, int64_t triggerTime, uin… in StatisticReporter() argument 32 type, "TRIGGER_TIME", triggerTime, "INTERVAL", interval); in StatisticReporter()
|
/base/time/time_service/services/dfx/include/ |
D | time_sysevent.h | 23 void StatisticReporter(int32_t callerPid, int32_t callerUid, int32_t type, int64_t triggerTime, uin…
|
/base/powermgr/thermal_manager/services/native/src/thermal_action/ |
D | thermal_timer.cpp | 77 bool ThermalTimer::StartTimer(uint64_t timerId, uint64_t triggerTime) in StartTimer() argument 80 auto ret = TimeServiceClient::GetInstance()->StartTimer(timerId, triggerTime); in StartTimer()
|
/base/time/time_service/interfaces/inner_api/include/ |
D | time_service_client.h | 156 bool StartTimer(uint64_t timerId, uint64_t triggerTime); 157 int32_t StartTimerV9(uint64_t timerId, uint64_t triggerTime);
|
/base/time/time_service/framework/js/napi/system_timer/src/ |
D | napi_system_timer.cpp | 263 uint64_t triggerTime = 0; in StartTimer() member 274 int64_t triggerTime = 0; in StartTimer() local 275 startTimerContext->status = napi_get_value_int64(env, argv[ARGV_SECOND], &triggerTime); in StartTimer() 278 startTimerContext->triggerTime = static_cast<uint64_t>(triggerTime); in StartTimer() 284 …iceClient::GetInstance()->StartTimerV9(startTimerContext->timerId, startTimerContext->triggerTime); in StartTimer()
|
/base/time/time_service/services/timer/include/ |
D | timer_manager_interface.h | 58 virtual int32_t StartTimer(uint64_t timerId, uint64_t triggerTime) = 0;
|
D | timer_manager.h | 41 int32_t StartTimer(uint64_t timerId, uint64_t triggerTime) override;
|
/base/time/time_service/framework/js/napi/system_timer/test/unittest/src/ |
D | SystemTimerUnit.test.js | 204 let triggerTime = 5000; 205 systemTimer.startTimer(timerID, triggerTime, function (err, data) {
|
/base/powermgr/thermal_manager/services/native/include/thermal_action/ |
D | thermal_timer.h | 56 bool StartTimer(uint64_t timerId, uint64_t triggerTime);
|
/base/time/time_service/services/ipc/proxy/ |
D | time_service_proxy.h | 43 int32_t StartTimer(uint64_t timerId, uint64_t triggerTime) override;
|
D | time_service_proxy.cpp | 97 int32_t TimeServiceProxy::StartTimer(uint64_t timerId, uint64_t triggerTime) in StartTimer() argument 109 if (!data.WriteUint64(triggerTime)) { in StartTimer()
|
/base/time/time_service/services/ipc/base/ |
D | time_service_interface.h | 157 virtual int32_t StartTimer(uint64_t timerId, uint64_t triggerTime) = 0;
|
/base/time/time_service/interfaces/inner_api/src/ |
D | time_service_client.cpp | 212 bool TimeServiceClient::StartTimer(uint64_t timerId, uint64_t triggerTime) in StartTimer() argument 214 int32_t errCode = StartTimerV9(timerId, triggerTime); in StartTimer() 221 int32_t TimeServiceClient::StartTimerV9(uint64_t timerId, uint64_t triggerTime) in StartTimerV9() argument 230 return proxy->StartTimer(timerId, triggerTime); in StartTimerV9()
|
/base/notification/distributed_notification_service/services/ans/src/ |
D | reminder_data_manager.cpp | 664 uint64_t triggerTime = reminder->GetTriggerTimeInMilli(); in ShowActiveReminderExtendLocked() local 671 …if ((*it)->GetTriggerTimeInMilli() - triggerTime > ReminderRequest::SAME_TIME_DISTINGUISH_MILLISEC… in ShowActiveReminderExtendLocked() 1248 uint64_t triggerTime = 0; in StartTimer() local 1257 triggerTime = reminderRequest->GetTriggerTimeInMilli(); in StartTimer() 1258 timer->StartTimer(timerId_, triggerTime); in StartTimer() 1267 triggerTime = ReminderRequest::GetDurationSinceEpochInMilli(now) in StartTimer() 1270 timer->StartTimer(timerIdAlerting_, triggerTime); in StartTimer() 1280 if (triggerTime == 0) { in StartTimer() 1284 ReminderRequest::GetDurationSinceEpochInMilli(now), triggerTime); in StartTimer()
|
/base/time/time_service/services/ipc/stub/ |
D | time_service_stub.cpp | 296 auto triggerTime = data.ReadUint64(); in OnStartTimer() local 297 if (StartTimer(timerId, triggerTime) != E_TIME_OK) { in OnStartTimer()
|
/base/time/time_service/services/ |
D | time_system_ability.cpp | 252 int64_t triggerTime = 0; in CreateTimer() local 253 GetWallTimeMs(triggerTime); in CreateTimer() 254 …StatisticReporter(IPCSkeleton::GetCallingPid(), uid, timerOptions->type, triggerTime, timerOptions… in CreateTimer()
|
/base/time/time_service/services/timer/src/ |
D | timer_manager.cpp | 102 int32_t TimerManager::StartTimer(uint64_t timerId, uint64_t triggerTime) in StartTimer() argument 111 TIME_HILOGI(TIME_MODULE_SERVICE, "TriggerTime : %{public}" PRId64 "", triggerTime); in StartTimer() 115 triggerTime, in StartTimer()
|
/base/time/time_service/ |
D | README_zh.md | 97 …4"></a><a name="p1893413268144"></a>function startTimer(timer: number, triggerTime: number, callba… 102 …4"></a><a name="p1893413268144"></a>function startTimer(timer: number, triggerTime: number): Promi…
|
D | README.md | 98 …4"></a><a name="p1893413268144"></a>function startTimer(timer: number, triggerTime: number, callba… 103 …4"></a><a name="p1893413268144"></a>function startTimer(timer: number, triggerTime: number): Promi…
|