Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/frame_rate_manager/
H A Dhgm_multi_app_strategy.cpp94 void HgmMultiAppStrategy::HandleLightFactorStatus(bool isSafe) in HandleLightFactorStatus() argument
96 RS_TRACE_NAME_FMT("[HandleLightFactorStatus] isSafe: %d", isSafe); in HandleLightFactorStatus()
97 if (lightFactorStatus_.load() == isSafe) { in HandleLightFactorStatus()
100 lightFactorStatus_.store(isSafe); in HandleLightFactorStatus()
H A Dhgm_multi_app_strategy.h51 void HandleLightFactorStatus(bool isSafe);
H A Dhgm_frame_rate_manager.h121 void HandleLightFactorStatus(pid_t pid, bool isSafe);
H A Dhgm_frame_rate_manager.cpp742 void HgmFrameRateManager::HandleLightFactorStatus(pid_t pid, bool isSafe) in HandleLightFactorStatus() argument
745 HGM_LOGI("HandleLightFactorStatus status:%{public}u", isSafe); in HandleLightFactorStatus()
750 HgmTaskHandleThread::Instance().PostTask([this, isSafeParam = isSafe] () { in HandleLightFactorStatus()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.cpp634 void RSInterfaces::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
636 renderServiceClient_->NotifyLightFactorStatus(isSafe); in NotifyLightFactorStatus()
H A Drs_interfaces.h248 void NotifyLightFactorStatus(bool isSafe);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/
H A Drs_irender_service_connection.h257 virtual void NotifyLightFactorStatus(bool isSafe) = 0;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H A Drs_render_service_client.cpp512 void RSRenderServiceClient::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H A Drs_render_service_client.cpp522 void RSRenderServiceClient::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.h230 void NotifyLightFactorStatus(bool isSafe) override;
H A Drs_render_service_client.cpp1390 void RSRenderServiceClient::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
1394 renderService->NotifyLightFactorStatus(isSafe); in NotifyLightFactorStatus()
H A Drs_render_service_connection_proxy.cpp2529 void RSRenderServiceConnectionProxy::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
2537 if (!data.WriteBool(isSafe)) { in NotifyLightFactorStatus()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service_connection.h269 void NotifyLightFactorStatus(bool isSafe) override;
H A Drs_render_service_connection.cpp1835 void RSRenderServiceConnection::NotifyLightFactorStatus(bool isSafe) in NotifyLightFactorStatus() argument
1844 mainThread_->GetFrameRateMgr()->HandleLightFactorStatus(remotePid_, isSafe); in NotifyLightFactorStatus()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_render_service_client.h322 void NotifyLightFactorStatus(bool isSafe);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/
H A Drs_interfaces_test.cpp1218 bool isSafe = false; variable
1219 rsInterfaces->NotifyLightFactorStatus(isSafe);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/transaction/
H A Drs_render_service_connection_stub.cpp1619 auto isSafe = data.ReadBool(); in OnRemoteRequest() local
1620 NotifyLightFactorStatus(isSafe); in OnRemoteRequest()