Home
last modified time | relevance | path

Searched refs:systemEvent (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/theme/screenlock_mgr/services/src/
H A Dscreenlock_system_ability.cpp286 SystemEventCallBack(systemEvent); in OnScreenOff()
298 SystemEventCallBack(systemEvent); in OnScreenOn()
331 SystemEventCallBack(systemEvent); in OnWakeUp()
336 SystemEvent systemEvent(BEGIN_SLEEP); in OnSleep() local
343 SystemEventCallBack(systemEvent); in OnSleep()
349 SystemEventCallBack(systemEvent); in OnExitAnimation()
355 systemEvent.userId_ = userId; in StrongAuthChanged()
357 SystemEventCallBack(systemEvent); in StrongAuthChanged()
419 SystemEvent systemEvent(LOCKSCREEN); in Lock() local
432 SystemEvent systemEvent(LOCKSCREEN); in Lock() local
[all …]
H A Dscreenlock_system_ability_proxy.cpp27 void ScreenLockSystemAbilityProxy::OnCallBack(const SystemEvent &systemEvent) in OnCallBack() argument
37 if (!data.WriteString(systemEvent.eventType_)) { in OnCallBack()
41 if (!data.WriteString(systemEvent.params_)) { in OnCallBack()
/ohos5.0/base/theme/screenlock_mgr/frameworks/js/napi/src/
H A Dscreenlock_system_ability_callback.cpp40 void ScreenlockSystemAbilityCallback::OnCallBack(const SystemEvent &systemEvent) in OnCallBack() argument
49 entry->systemEvent = systemEvent; in OnCallBack()
59 …napi_create_string_utf8(entry->env, entry->systemEvent.eventType_.c_str(), NAPI_AUTO_LENGTH, &even… in OnCallBack()
60 …napi_create_string_utf8(entry->env, entry->systemEvent.params_.c_str(), NAPI_AUTO_LENGTH, &params); in OnCallBack()
65 SCLOCK_HILOGI("OnCallBack eventType:%{public}s", entry->systemEvent.eventType_.c_str()); in OnCallBack()
/ohos5.0/base/theme/screenlock_mgr/test/unittest/
H A Dscreenlock_callback_test.cpp30 void ScreenLockSystemAbilityTest::OnCallBack(const SystemEvent &systemEvent) in OnCallBack() argument
32 …SCLOCK_HILOGD("event=%{public}s,params=%{public}s", systemEvent.eventType_.c_str(), systemEvent.pa… in OnCallBack()
H A Dscreenlock_notify_test_instance.cpp30 void ScreenlockNotifyTestInstance::OnCallBack(const SystemEvent &systemEvent) in OnCallBack() argument
32 …SCLOCK_HILOGD("ScreenlockNotifyTestInstance ONCALLBACK event is%{public}s", systemEvent.eventType… in OnCallBack()
H A Dscreenlock_notify_test_instance.h29 void OnCallBack(const SystemEvent &systemEvent) override;
H A Dscreenlock_callback_test.h29 void OnCallBack(const SystemEvent &systemEvent) override;
/ohos5.0/base/theme/screenlock_mgr/frameworks/native/src/
H A Dscreenlock_system_ability_stub.cpp27 void ScreenLockSystemAbilityStub::OnCallBack(const SystemEvent &systemEvent) in OnCallBack() argument
41 SystemEvent systemEvent(data.ReadString(), data.ReadString()); in OnRemoteRequest() local
42 OnCallBack(systemEvent); in OnRemoteRequest()
H A Dscreenlock_app_manager.cpp195 SystemEvent systemEvent(SERVICE_RESTART); in OnRemoteSaDied() local
196 systemEventListener_->OnCallBack(systemEvent); in OnRemoteSaDied()
/ohos5.0/base/theme/screenlock_mgr/services/include/
H A Dscreenlock_system_ability_proxy.h31 void OnCallBack(const SystemEvent &systemEvent) override;
H A Dscreenlock_system_ability.h205 … void SystemEventCallBack(const SystemEvent &systemEvent, TraceTaskId traceTaskId = HITRACE_BUTT);
/ohos5.0/base/theme/screenlock_mgr/frameworks/js/napi/include/
H A Duv_queue.h31 SystemEvent systemEvent; member
H A Dscreenlock_system_ability_callback.h32 void OnCallBack(const SystemEvent &systemEvent) override;
/ohos5.0/base/theme/screenlock_mgr/frameworks/native/include/
H A Dscreenlock_system_ability_stub.h32 SCREENLOCK_API void OnCallBack(const SystemEvent &systemEvent) override;
/ohos5.0/base/theme/screenlock_mgr/interfaces/inner_api/include/
H A Dscreenlock_system_ability_interface.h36 virtual void OnCallBack(const SystemEvent &systemEvent) = 0;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/select_overlay/
H A Dselect_overlay_node.cpp634 std::function<void()> systemEvent; in GetCreateMenuOptionsParams() local
637 systemEvent = clickCallback->second; in GetCreateMenuOptionsParams()
639 auto callback = [onCreateCallback = info->onCreateCallback, systemEvent, item]() { in GetCreateMenuOptionsParams()
657 if (!result && systemEvent) { in GetCreateMenuOptionsParams()
658 systemEvent(); in GetCreateMenuOptionsParams()
660 if (!systemEvent && !result) { in GetCreateMenuOptionsParams()
1295 if (!result && systemEvent) { in CreateExtensionMenuOptionCallback()
1296 systemEvent(); in CreateExtensionMenuOptionCallback()
1298 if (!systemEvent && !result) { in CreateExtensionMenuOptionCallback()
1317 std::function<void()> systemEvent; in AddCreateMenuExtensionMenuParams() local
[all …]
H A Dselect_overlay_node.h132 const std::function<void()>& systemEvent, const MenuOptionsParam& item);