Home
last modified time | relevance | path

Searched refs:systemAnimatedScenes (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/
H A Drsinterfaces_fuzzer.cpp162 uint32_t systemAnimatedScenes = GetData<uint32_t>(); in RSPhysicalScreenFuzzTest() local
163 rsInterfaces.SetSystemAnimatedScenes(static_cast<SystemAnimatedScenes>(systemAnimatedScenes)); in RSPhysicalScreenFuzzTest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderserviceconnectionproxy_fuzzer/
H A Drsrenderserviceconnectionproxy_fuzzer.cpp97 SystemAnimatedScenes systemAnimatedScenes = (SystemAnimatedScenes)width; in DoSomethingInterestingWithMyAPI() local
197 rsRenderServiceConnectionProxy.SetSystemAnimatedScenes(systemAnimatedScenes); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_main_thread.cpp3672 bool RSMainThread::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
3675 "systemAnimatedScenesListSize_[%d]", __func__, systemAnimatedScenes, in SetSystemAnimatedScenes()
3677 if (systemAnimatedScenes < SystemAnimatedScenes::ENTER_MISSION_CENTER || in SetSystemAnimatedScenes()
3678 systemAnimatedScenes > SystemAnimatedScenes::OTHERS) { in SetSystemAnimatedScenes()
3682 systemAnimatedScenes_ = systemAnimatedScenes; in SetSystemAnimatedScenes()
3688 if (systemAnimatedScenes == SystemAnimatedScenes::OTHERS) { in SetSystemAnimatedScenes()
3699 if (systemAnimatedScenes == SystemAnimatedScenes::ENTER_TFS_WINDOW || in SetSystemAnimatedScenes()
3700 systemAnimatedScenes == SystemAnimatedScenes::EXIT_TFU_WINDOW || in SetSystemAnimatedScenes()
3701 systemAnimatedScenes == SystemAnimatedScenes::ENTER_WIND_CLEAR || in SetSystemAnimatedScenes()
3702 systemAnimatedScenes == SystemAnimatedScenes::ENTER_WIND_RECOVER) { in SetSystemAnimatedScenes()
[all …]
H A Drs_render_service_connection.h248 bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) override;
H A Drs_render_service_connection.cpp1775 bool RSRenderServiceConnection::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
1780 RSUifirstManager::Instance().OnProcessAnimateScene(systemAnimatedScenes); in SetSystemAnimatedScenes()
1782 return mainThread_->SetSystemAnimatedScenes(systemAnimatedScenes); in SetSystemAnimatedScenes()
H A Drs_main_thread.h222 bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.cpp517 bool RSInterfaces::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
519 return renderServiceClient_->SetSystemAnimatedScenes(systemAnimatedScenes); in SetSystemAnimatedScenes()
H A Drs_interfaces.h240 bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/
H A Drs_irender_service_connection.h249 virtual bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) = 0;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H A Drs_render_service_client.cpp478 bool RSRenderServiceClient::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H A Drs_render_service_client.cpp478 bool RSRenderServiceClient::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.h222 bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) override;
H A Drs_render_service_client.cpp1302 bool RSRenderServiceClient::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
1309 return renderService->SetSystemAnimatedScenes(systemAnimatedScenes); in SetSystemAnimatedScenes()
H A Drs_render_service_connection_proxy.cpp2290 … RSRenderServiceConnectionProxy::SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes) in SetSystemAnimatedScenes() argument
2299 data.WriteUint32(static_cast<uint32_t>(systemAnimatedScenes)); in SetSystemAnimatedScenes()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_render_service_client.h314 bool SetSystemAnimatedScenes(SystemAnimatedScenes systemAnimatedScenes);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/transaction/
H A Drs_render_service_connection_stub.cpp1504 uint32_t systemAnimatedScenes = data.ReadUint32(); in OnRemoteRequest() local
1505 … bool result = SetSystemAnimatedScenes(static_cast<SystemAnimatedScenes>(systemAnimatedScenes)); in OnRemoteRequest()