/ohos5.0/base/time/time_service/interfaces/inner_api/include/ |
H A D | time_service_interface.h | 116 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0; 125 … virtual bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
|
H A D | time_service_client.h | 384 TIME_API bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger); 396 TIME_API bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger);
|
/ohos5.0/base/time/time_service/services/timer/include/ |
H A D | timer_manager_interface.h | 67 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0; 68 … virtual bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
|
H A D | timer_proxy.h | 38 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger, 41 bool PidProxyTimer(int32_t uid, int pid, bool isProxy, bool needRetrigger,
|
H A D | timer_manager.h | 57 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 58 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
/ohos5.0/base/time/time_service/services/ipc/proxy/inner_api_include/ |
H A D | time_service_proxy.h | 41 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 42 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
/ohos5.0/base/time/time_service/services/ipc/proxy/ |
H A D | time_service_proxy.cpp | 241 bool TimeServiceProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 257 if (!data.WriteBool(needRetrigger)) { in ProxyTimer() 271 … TimeServiceProxy::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument 297 if (!data.WriteBool(needRetrigger)) { in ProxyTimer()
|
/ohos5.0/base/time/time_service/services/ipc/stub/ |
H A D | time_service_stub.cpp | 300 auto needRetrigger = data.ReadBool(); in OnTimerProxy() local 301 if (!ProxyTimer(uid, isProxy, needRetrigger)) { in OnTimerProxy() 329 auto needRetrigger = data.ReadBool(); in OnPidTimerProxy() local 330 if (!ProxyTimer(uid, pidList, isProxy, needRetrigger)) { in OnPidTimerProxy()
|
/ohos5.0/base/time/time_service/services/ |
H A D | time_system_ability.h | 68 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 69 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
H A D | time_system_ability.cpp | 750 bool TimeSystemAbility::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 761 return timerManager->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer() 776 …TimeSystemAbility::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument 786 return timerManager->ProxyTimer(uid, pidList, isProxy, needRetrigger); in ProxyTimer()
|
/ohos5.0/base/time/time_service/interfaces/inner_api/src/ |
H A D | time_service_client.cpp | 694 bool TimeServiceClient::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 704 return proxy->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer() 707 …TimeServiceClient::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument 716 return proxy->ProxyTimer(uid, pidList, isProxy, needRetrigger); in ProxyTimer()
|
/ohos5.0/base/time/time_service/services/timer/src/ |
H A D | timer_proxy.cpp | 131 bool TimerProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger, in ProxyTimer() argument 136 uid, isProxy, needRetrigger); in ProxyTimer() 147 if (!needRetrigger) { in ProxyTimer() 170 bool TimerProxy::PidProxyTimer(int32_t uid, int pid, bool isProxy, bool needRetrigger, in PidProxyTimer() argument 175 pid, isProxy, needRetrigger); in PidProxyTimer() 188 if (!needRetrigger) { in PidProxyTimer()
|
H A D | timer_manager.cpp | 1004 bool TimerManager::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 1007 return TimerProxy::GetInstance().ProxyTimer(uid, isProxy, needRetrigger, GetBootTimeNs(), in ProxyTimer() 1044 bool TimerManager::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument 1049 … if (!TimerProxy::GetInstance().PidProxyTimer(uid, *pid, isProxy, needRetrigger, GetBootTimeNs(), in ProxyTimer()
|
/ohos5.0/base/time/time_service/test/unittest/service_test/src/ |
H A D | time_proxy_test.cpp | 332 bool needRetrigger = true; variable 333 bool ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); 343 ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); 542 bool needRetrigger = true; variable 543 bool ret = timerManagerHandler_->ProxyTimer(uid, pidList, isProxy, needRetrigger); 554 ret = timerManagerHandler_->ProxyTimer(uid, pidList, isProxy, needRetrigger);
|