• Home
  • Raw
  • Download

Lines Matching refs:systemEvent

219     SystemEvent systemEvent(BEGIN_SCREEN_OFF);  in OnBeginScreenOff()  local
220 SystemEventCallBack(systemEvent); in OnBeginScreenOff()
227 SystemEvent systemEvent(END_SCREEN_OFF); in OnEndScreenOff() local
228 SystemEventCallBack(systemEvent); in OnEndScreenOff()
235 SystemEvent systemEvent(BEGIN_SCREEN_ON); in OnBeginScreenOn() local
236 SystemEventCallBack(systemEvent); in OnBeginScreenOn()
249 SystemEvent systemEvent(SYSTEM_READY); in OnSystemReady() local
250 systemEventListener_->OnCallBack(systemEvent); in OnSystemReady()
264 SystemEvent systemEvent(END_SCREEN_ON); in OnEndScreenOn() local
265 SystemEventCallBack(systemEvent); in OnEndScreenOn()
272 SystemEvent systemEvent(BEGIN_WAKEUP); in OnBeginWakeUp() local
273 SystemEventCallBack(systemEvent); in OnBeginWakeUp()
280 SystemEvent systemEvent(END_WAKEUP); in OnEndWakeUp() local
281 SystemEventCallBack(systemEvent); in OnEndWakeUp()
289 SystemEvent systemEvent(BEGIN_SLEEP, std::to_string(why)); in OnBeginSleep() local
290 SystemEventCallBack(systemEvent); in OnBeginSleep()
297 SystemEvent systemEvent(END_SLEEP, std::to_string(why)); in OnEndSleep() local
298 SystemEventCallBack(systemEvent); in OnEndSleep()
314 SystemEvent systemEvent(CHANGE_USER, std::to_string(newUserId)); in OnChangeUser() local
315 SystemEventCallBack(systemEvent); in OnChangeUser()
322 SystemEvent systemEvent(SCREENLOCK_ENABLED, std::to_string(enabled)); in OnScreenlockEnabled() local
323 SystemEventCallBack(systemEvent); in OnScreenlockEnabled()
329 SystemEvent systemEvent(EXIT_ANIMATION); in OnExitAnimation() local
330 SystemEventCallBack(systemEvent); in OnExitAnimation()
366 SystemEvent systemEvent(UNLOCKSCREEN); in UnlockInner() local
367 SystemEventCallBack(systemEvent, HITRACE_UNLOCKSCREEN); in UnlockInner()
388 SystemEvent systemEvent(LOCKSCREEN); in Lock() local
389 SystemEventCallBack(systemEvent, HITRACE_LOCKSCREEN); in Lock()
581 void ScreenLockSystemAbility::SystemEventCallBack(const SystemEvent &systemEvent, TraceTaskId trace… in SystemEventCallBack() argument
583 …SCLOCK_HILOGI("OnCallBack eventType is %{public}s, params is %{public}s", systemEvent.eventType_.c… in SystemEventCallBack()
584 systemEvent.params_.c_str()); in SystemEventCallBack()
589 auto callback = [this, systemEvent, traceTaskId]() { in SystemEventCallBack()
591 …StartAsyncTrace(HITRACE_TAG_MISC, "ScreenLockSystemAbility::" + systemEvent.eventType_ + "begin ca… in SystemEventCallBack()
595 systemEventListener_->OnCallBack(systemEvent); in SystemEventCallBack()
598 …HITRACE_TAG_MISC, "ScreenLockSystemAbility::" + systemEvent.eventType_ + "end callback", traceTask… in SystemEventCallBack()