Home
last modified time | relevance | path

Searched refs:targetPersistentId (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test4.cpp1120 int32_t targetPersistentId = INVALID_SESSION_ID; variable
1121 auto result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1124 targetPersistentId = 1;
1125 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1136 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1147 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
H A Dscene_session_manager_test3.cpp1391 int32_t targetPersistentId = INVALID_SESSION_ID; variable
1392 WSError result01 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1394 targetPersistentId = 1;
1395 WSError result02 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1398 WSError result03 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
H A Dscene_session_manager_stub_test.cpp1801 int32_t targetPersistentId = 65535; variable
1802 data.WriteInt32(targetPersistentId);
/ohos5.0/foundation/window/window_manager/wm/include/
H A Dwindow_adapter.h101 virtual WMError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId);
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_proxy.h103 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
H A Dscene_session_manager_interface.h239 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override in ShiftAppWindowFocus() argument
/ohos5.0/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_interface.h165 virtual WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h744 WMError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId);
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp737 WMError WindowAdapter::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
744 wmsProxy->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId)); in ShiftAppWindowFocus()
H A Dwindow_manager.cpp1186 WMError WindowManager::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
1188 …ngletonContainer::Get<WindowAdapter>().ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in ShiftAppWindowFocus()
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_manager_napi/
H A Djs_window_manager.cpp1146 int32_t targetPersistentId = static_cast<int32_t>(INVALID_WINDOW_ID); in OnShiftAppWindowFocus() local
1151 if (errCode == WMError::WM_OK && !ConvertFromJsValue(env, argv[1], targetPersistentId)) { in OnShiftAppWindowFocus()
1162 …gletonContainer::Get<WindowManager>().ShiftAppWindowFocus(sourcePersistentId, targetPersistentId)); in OnShiftAppWindowFocus()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscene_session_manager_stub.cpp917 int32_t targetPersistentId = data.ReadInt32(); in HandleShiftAppWindowFocus() local
918 WSError ret = ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HandleShiftAppWindowFocus()
H A Dscene_session_manager_proxy.cpp1798 …eneSessionManagerProxy::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
1814 if (!data.WriteUint32(targetPersistentId)) { in ShiftAppWindowFocus()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscene_session_manager.h370 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscene_session_manager.cpp9826 …or SceneSessionManager::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
9828 WLOGFI("from id: %{public}d to id: %{public}d", sourcePersistentId, targetPersistentId); in ShiftAppWindowFocus()
9833 if (targetPersistentId == focusedSessionId_) { in ShiftAppWindowFocus()
9843 ret = GetAppMainSceneSession(targetSession, targetPersistentId); in ShiftAppWindowFocus()
9862 return RequestSessionFocus(targetPersistentId, false, reason); in ShiftAppWindowFocus()