Home
last modified time | relevance | path

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

/ohos5.0/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test3.cpp1390 int32_t sourcePersistentId = INVALID_SESSION_ID; variable
1392 WSError result01 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1395 WSError result02 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1397 sourcePersistentId = 1;
1398 WSError result03 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
H A Dscene_session_manager_test4.cpp1119 int32_t sourcePersistentId = INVALID_SESSION_ID; variable
1121 auto result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1125 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1136 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
1147 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
H A Dscene_session_manager_stub_test.cpp1799 int32_t sourcePersistentId = 12345; variable
1800 data.WriteInt32(sourcePersistentId);
/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 …WMError ret = SingletonContainer::Get<WindowAdapter>().ShiftAppWindowFocus(sourcePersistentId, tar… in ShiftAppWindowFocus()
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_manager_napi/
H A Djs_window_manager.cpp1145 int32_t sourcePersistentId = static_cast<int32_t>(INVALID_WINDOW_ID); in OnShiftAppWindowFocus() local
1147 if (errCode == WMError::WM_OK && !ConvertFromJsValue(env, argv[0], sourcePersistentId)) { in OnShiftAppWindowFocus()
1162 …SingletonContainer::Get<WindowManager>().ShiftAppWindowFocus(sourcePersistentId, targetPersistentI… in OnShiftAppWindowFocus()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscene_session_manager_stub.cpp916 int32_t sourcePersistentId = data.ReadInt32(); in HandleShiftAppWindowFocus() local
918 WSError ret = ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HandleShiftAppWindowFocus()
H A Dscene_session_manager_proxy.cpp1798 WSError SceneSessionManagerProxy::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPer… in ShiftAppWindowFocus() argument
1809 if (!data.WriteUint32(sourcePersistentId)) { 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 WSError SceneSessionManager::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersiste… in ShiftAppWindowFocus() argument
9828 WLOGFI("from id: %{public}d to id: %{public}d", sourcePersistentId, targetPersistentId); in ShiftAppWindowFocus()
9829 if (sourcePersistentId != focusedSessionId_) { in ShiftAppWindowFocus()
9838 WSError ret = GetAppMainSceneSession(sourceSession, sourcePersistentId); in ShiftAppWindowFocus()