Home
last modified time | relevance | path

Searched refs:NotifyWindowTransition (Results 1 - 25 of 29) sorted by relevance

12

/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/include/
H A Dwindow_manager_service_handler.h34 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo,
53 // ipc id for NotifyWindowTransition
H A Dwindow_manager_service_handler_proxy.h30 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo,
/foundation/window/window_manager/test/common/mock/
H A Dmock_window_adapter.h42 MOCK_METHOD2(NotifyWindowTransition, WMError(sptr<WindowTransitionInfo> from, sptr<WindowTransitionInfo> to));
/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_manager_stub_impl.h111 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& from, sptr<WindowTransitionInfo>& to, in NotifyWindowTransition() function in OHOS::Rosen::WindowManagerStubImpl
H A Dwindow_manager_service_test.cpp154 * @tc.name: NotifyWindowTransition
155 * @tc.desc: NotifyWindowTransition test
162 ASSERT_EQ(WMError::WM_OK, wms->NotifyWindowTransition(fromInfo, toInfo, false)); in HWTEST_F()
164 ASSERT_EQ(WMError::WM_OK, wms->NotifyWindowTransition(fromInfo, toInfo, true)); in HWTEST_F()
166 ASSERT_NE(WMError::WM_ERROR_NO_REMOTE_ANIMATION, wms->NotifyWindowTransition(fromInfo, toInfo, true)); in HWTEST_F()
521 wmsHandler_->NotifyWindowTransition(from, to, animaEnabled); in HWTEST_F()
H A Dwindow_manager_proxy_test.cpp130 * @tc.name: NotifyWindowTransition
134 HWTEST_F(WindowManagerProxyTest, NotifyWindowTransition, Function | SmallTest | Level2) in HWTEST_F()
139 WMError err = windowManagerProxy_->NotifyWindowTransition(from, to, isFromClient); in HWTEST_F()
H A Dwindow_controller_test.cpp148 * @tc.name: NotifyWindowTransition
152 HWTEST_F(WindowControllerTest, NotifyWindowTransition, Function | SmallTest | Level3) in HWTEST_F()
156 ASSERT_EQ(WMError::WM_ERROR_NO_REMOTE_ANIMATION, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
185 ASSERT_EQ(WMError::WM_ERROR_NO_REMOTE_ANIMATION, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
190 ASSERT_EQ(WMError::WM_OK, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
195 ASSERT_EQ(WMError::WM_OK, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
200 ASSERT_EQ(WMError::WM_OK, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
207 ASSERT_EQ(WMError::WM_OK, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
212 ASSERT_EQ(WMError::WM_OK, windowController_->NotifyWindowTransition(srcInfo, dstInfo)); in HWTEST_F()
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_proxy.h37 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& from, sptr<WindowTransitionInfo>& to,
H A Dwindow_manager_interface.h123 virtual WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& from, sptr<WindowTransitionInfo>& to,
/foundation/window/window_manager/wmserver/include/
H A Dwindow_manager_service.h63 virtual void NotifyWindowTransition(
96 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& from, sptr<WindowTransitionInfo>& to,
H A Dwindow_controller.h46 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& fromInfo, sptr<WindowTransitionInfo>& toInfo);
/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/src/
H A Dwindow_manager_service_handler_stub.cpp78 NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyWindowTransitionInner()
H A Dwindow_manager_service_handler_proxy.cpp28 void WindowManagerServiceHandlerProxy::NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, in NotifyWindowTransition() function in OHOS::AAFwk::WindowManagerServiceHandlerProxy
/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_adapter_test.cpp502 * @tc.name: NotifyWindowTransition
503 * @tc.desc: WindowAdapter/NotifyWindowTransition
506 HWTEST_F(WindowAdapterTest, NotifyWindowTransition, Function | SmallTest | Level2) in HWTEST_F()
513 auto ret = windowAdapter.NotifyWindowTransition(from, to); in HWTEST_F()
H A Dwindow_impl_test2.cpp1452 * @tc.name: NotifyWindowTransition
1453 * @tc.desc: NotifyWindowTransition test
1456 HWTEST_F(WindowImplTest2, NotifyWindowTransition, Function | SmallTest | Level3) in HWTEST_F()
1468 ASSERT_EQ(WMError::WM_ERROR_NO_MEM, window->NotifyWindowTransition(TransitionReason::ABILITY_TRANSITION)); in HWTEST_F()
/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp223 void WindowManagerServiceHandler::NotifyWindowTransition( in NotifyWindowTransition() function in OHOS::Rosen::WindowManagerServiceHandler
235 WindowManagerService::GetInstance().NotifyWindowTransition(fromInfo, toInfo, false); in NotifyWindowTransition()
794 WMError WindowManagerService::NotifyWindowTransition( in NotifyWindowTransition() function in OHOS::Rosen::WindowManagerService
798 WLOGI("NotifyWindowTransition asynchronously."); in NotifyWindowTransition()
800 return windowController_->NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
802 PostAsyncTask(task, "NotifyWindowTransition"); in NotifyWindowTransition()
805 WLOGI("NotifyWindowTransition synchronously."); in NotifyWindowTransition()
807 return windowController_->NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
809 return PostSyncTask(task, "NotifyWindowTransition"); in NotifyWindowTransition()
/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_interface.h224 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& from, sptr<WindowTransitionInfo>& to,
/foundation/window/window_manager/wm/include/
H A Dwindow_adapter.h71 virtual WMError NotifyWindowTransition(sptr<WindowTransitionInfo> from, sptr<WindowTransitionInfo> to);
H A Dwindow_impl.h397 WMError NotifyWindowTransition(TransitionReason reason);
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp507 WMError WindowAdapter::NotifyWindowTransition(sptr<WindowTransitionInfo> from, sptr<WindowTransitionInfo> to) in NotifyWindowTransition() function in OHOS::Rosen::WindowAdapter
513 return wmsProxy->NotifyWindowTransition(from, to, true); in NotifyWindowTransition()
H A Dwindow_impl.cpp2213 WMError WindowImpl::NotifyWindowTransition(TransitionReason reason) in NotifyWindowTransition() function in OHOS::Rosen::WindowImpl
2238 return SingletonContainer::Get<WindowAdapter>().NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
2249 WMError ret = NotifyWindowTransition(TransitionReason::MINIMIZE); in Minimize()
2309 WMError ret = NotifyWindowTransition(TransitionReason::CLOSE_BUTTON); in PendingClose()
/foundation/window/window_manager/wmserver/src/zidl/
H A Dwindow_manager_stub.cpp296 WMError errCode = NotifyWindowTransition(from, to, isFromClient); in OnRemoteRequest()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_record.cpp625 windowHandler->NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyAnimationFromTerminatingAbility()
640 windowHandler->NotifyWindowTransition(fromInfo, nullptr, animaEnabled); in NotifyAnimationFromTerminatingAbility()
654 windowHandler->NotifyWindowTransition(fromInfo, nullptr, animaEnabled); in NotifyAnimationFromMinimizeAbility()
832 windowHandler->NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyAnimationFromRecentTask()
858 windowHandler->NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyAnimationFromStartingAbility()
/foundation/ability/ability_runtime/test/unittest/mission_list_manager_first_test/
H A Dmission_list_manager_first_test.cpp93 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo, in NotifyWindowTransition() function in OHOS::AAFwk::MockWMSHandler
/foundation/window/window_manager/test/fuzztest/wms/window_fuzzer/
H A Dwindow_fuzzer.cpp608 window->NotifyWindowTransition(reason); in CheckWindowImplFunctionsPart6()

Completed in 39 milliseconds

12