Home
last modified time | relevance | path

Searched refs:needRetrigger (Results 1 - 14 of 14) sorted by relevance

/base/time/time_service/services/ipc/proxy/inner_api_include/
H A Dtime_service_proxy.h41 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override;
42 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
/base/time/time_service/services/timer/include/
H A Dtimer_manager_interface.h67 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0;
68 virtual bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
H A Dtimer_proxy.h38 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger,
41 bool PidProxyTimer(int pidList, bool isProxy, bool needRetrigger,
H A Dtimer_manager.h57 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override;
58 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
/base/time/time_service/interfaces/inner_api/include/
H A Dtime_service_interface.h113 * @param needRetrigger true if need retrigger, false if not.
116 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0;
122 * @param needRetrigger true if need retrigger, false if not.
125 virtual bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
H A Dtime_service_client.h384 TIME_API bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger);
396 TIME_API bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger);
/base/time/time_service/services/
H A Dtime_system_ability.h68 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override;
69 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
H A Dtime_system_ability.cpp808 bool TimeSystemAbility::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument
819 return timerManager->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer()
834 bool TimeSystemAbility::ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument
844 return timerManager->ProxyTimer(pidList, isProxy, needRetrigger); in ProxyTimer()
/base/time/time_service/services/ipc/stub/
H A Dtime_service_stub.cpp289 auto needRetrigger = data.ReadBool(); in OnTimerProxy() local
290 if (!ProxyTimer(uid, isProxy, needRetrigger)) { in OnTimerProxy()
316 auto needRetrigger = data.ReadBool(); in OnPidTimerProxy() local
317 if (!ProxyTimer(pidList, isProxy, needRetrigger)) { in OnPidTimerProxy()
/base/time/time_service/services/ipc/proxy/
H A Dtime_service_proxy.cpp241 bool TimeServiceProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument
257 if (!data.WriteBool(needRetrigger)) { in ProxyTimer()
258 TIME_HILOGE(TIME_MODULE_CLIENT, "Failed to write needRetrigger"); in ProxyTimer()
271 bool TimeServiceProxy::ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument
293 if (!data.WriteBool(needRetrigger)) { in ProxyTimer()
294 TIME_HILOGE(TIME_MODULE_CLIENT, "Failed to write needRetrigger"); in ProxyTimer()
/base/time/time_service/interfaces/inner_api/src/
H A Dtime_service_client.cpp685 bool TimeServiceClient::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument
695 return proxy->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer()
698 bool TimeServiceClient::ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument
707 return proxy->ProxyTimer(pidList, isProxy, needRetrigger); in ProxyTimer()
/base/time/time_service/test/unittest/service_test/src/
H A Dtime_proxy_test.cpp331 bool needRetrigger = true; in HWTEST_F() local
332 bool ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); in HWTEST_F()
342 ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); in HWTEST_F()
540 bool needRetrigger = true; in HWTEST_F() local
541 bool ret = timerManagerHandler_->ProxyTimer(pidList, isProxy, needRetrigger); in HWTEST_F()
551 ret = timerManagerHandler_->ProxyTimer(pidList, isProxy, needRetrigger); in HWTEST_F()
/base/time/time_service/services/timer/src/
H A Dtimer_proxy.cpp123 bool TimerProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger, in ProxyTimer() argument
127 TIME_HILOGD(TIME_MODULE_SERVICE, "start. uid=%{public}d, isProxy=%{public}u, needRetrigger=%{public}u", in ProxyTimer()
128 uid, isProxy, needRetrigger); in ProxyTimer()
139 if (!needRetrigger) { in ProxyTimer()
162 bool TimerProxy::PidProxyTimer(int pid, bool isProxy, bool needRetrigger, in PidProxyTimer() argument
166 TIME_HILOGD(TIME_MODULE_SERVICE, "start. pid=%{public}d, isProxy=%{public}u, needRetrigger=%{public}u", in PidProxyTimer()
167 pid, isProxy, needRetrigger); in PidProxyTimer()
180 if (!needRetrigger) { in PidProxyTimer()
H A Dtimer_manager.cpp934 bool TimerManager::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument
937 return TimerProxy::GetInstance().ProxyTimer(uid, isProxy, needRetrigger, GetBootTimeNs(), in ProxyTimer()
974 bool TimerManager::ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument
979 if (!TimerProxy::GetInstance().PidProxyTimer(*pid, isProxy, needRetrigger, GetBootTimeNs(), in ProxyTimer()

Completed in 13 milliseconds