Lines Matching defs:pImpl_

161     explicit DisplayManagerListener(sptr<Impl> impl) : pImpl_(impl)

171 if (pImpl_ == nullptr) {
175 pImpl_->NotifyDisplayCreate(displayInfo);
178 std::lock_guard<std::recursive_mutex> lock(pImpl_->mutex_);
179 displayListeners = pImpl_->displayListeners_;
192 if (pImpl_ == nullptr) {
196 pImpl_->NotifyDisplayDestroy(displayId);
199 std::lock_guard<std::recursive_mutex> lock(pImpl_->mutex_);
200 displayListeners = pImpl_->displayListeners_;
213 if (pImpl_ == nullptr) {
218 pImpl_->NotifyDisplayChange(displayInfo);
221 std::lock_guard<std::recursive_mutex> lock(pImpl_->mutex_);
222 displayListeners = pImpl_->displayListeners_;
229 sptr<Impl> pImpl_;
234 explicit DisplayManagerAgent(sptr<Impl> impl) : pImpl_(impl)
241 pImpl_->NotifyDisplayPowerEvent(event, status);
246 pImpl_->NotifyDisplayStateChanged(id, state);
249 sptr<Impl> pImpl_;
254 explicit DisplayManagerScreenshotAgent(sptr<Impl> impl) : pImpl_(impl)
261 pImpl_->NotifyScreenshot(info);
264 sptr<Impl> pImpl_;
269 explicit DisplayManagerPrivateWindowAgent(sptr<Impl> impl) : pImpl_(impl)
276 pImpl_->NotifyPrivateWindowStateChanged(hasPrivate);
279 sptr<Impl> pImpl_;
284 explicit DisplayManagerPrivateWindowListAgent(sptr<Impl> impl) : pImpl_(impl)
291 pImpl_->NotifyPrivateStateWindowListChanged(id, privacyWindowList);
294 sptr<Impl> pImpl_;
299 explicit DisplayManagerFoldStatusAgent(sptr<Impl> impl) : pImpl_(impl)
306 pImpl_->NotifyFoldStatusChanged(foldStatus);
309 sptr<Impl> pImpl_;
314 explicit DisplayManagerFoldAngleAgent(sptr<Impl> impl) : pImpl_(impl)
321 pImpl_->NotifyFoldAngleChanged(foldAngles);
324 sptr<Impl> pImpl_;
329 explicit DisplayManagerCaptureStatusAgent(sptr<Impl> impl) : pImpl_(impl)
336 pImpl_->NotifyCaptureStatusChanged(isCapture);
339 sptr<Impl> pImpl_;
344 explicit DisplayManagerDisplayUpdateAgent(sptr<Impl> impl) : pImpl_(impl)
351 pImpl_->NotifyDisplayChangeInfoChanged(info);
354 sptr<Impl> pImpl_;
360 explicit DisplayManagerDisplayModeAgent(sptr<Impl> impl) : pImpl_(impl)
367 pImpl_->NotifyDisplayModeChanged(displayMode);
370 sptr<Impl> pImpl_;
375 explicit DisplayManagerAvailableAreaAgent(sptr<Impl> impl) : pImpl_(impl)
382 pImpl_->NotifyAvailableAreaChanged(area);
385 sptr<Impl> pImpl_;
537 DisplayManager::DisplayManager() : pImpl_(new Impl(mutex_))
632 return pImpl_->GetDisplayById(displayId);
641 sptr<Display> display = pImpl_->GetDisplayByScreenId(screenId);
731 if (!pImpl_->CheckRectValid(rect, oriHeight, oriWidth)) {
736 if (!pImpl_->CheckSizeValid(size, oriHeight, oriWidth)) {
759 return pImpl_->GetDefaultDisplay();
845 display = pImpl_->GetDisplayById(displayId);
853 return pImpl_->GetDefaultDisplaySync();
868 return pImpl_->GetAllDisplayPhysicalResolution();
889 return pImpl_->HasPrivateWindow(displayId, hasPrivateWindow);
899 return pImpl_->IsFoldable();
909 return pImpl_->IsCaptured();
919 return pImpl_->GetFoldStatus();
929 return pImpl_->GetFoldDisplayMode();
939 pImpl_->SetFoldDisplayMode(mode);
944 return pImpl_->SetFoldDisplayModeFromJs(mode);
949 pImpl_->SetDisplayScale(screenId, scaleX, scaleY, pivotX, pivotY);
970 pImpl_->SetFoldStatusLocked(locked);
975 return pImpl_->SetFoldStatusLockedFromJs(locked);
990 return pImpl_->GetCurrentFoldCreaseRegion();
1047 return pImpl_->RegisterPrivateWindowListener(listener);
1056 return pImpl_->UnregisterPrivateWindowListener(listener);
1065 return pImpl_->RegisterPrivateWindowListChangeListener(listener);
1074 return pImpl_->UnregisterPrivateWindowListChangeListener(listener);
1161 return pImpl_->RegisterDisplayListener(listener);
1189 return pImpl_->UnregisterDisplayListener(listener);
1218 return pImpl_->RegisterDisplayPowerEventListener(listener);
1247 return pImpl_->UnregisterDisplayPowerEventListener(listener);
1275 return pImpl_->RegisterScreenshotListener(listener);
1303 return pImpl_->UnregisterScreenshotListener(listener);
1324 return pImpl_->RegisterFoldAngleListener(listener);
1353 return pImpl_->UnregisterFoldAngleListener(listener);
1393 return pImpl_->RegisterCaptureStatusListener(listener);
1422 return pImpl_->UnregisterCaptureStatusListener(listener);
1462 return pImpl_->RegisterFoldStatusListener(listener);
1491 return pImpl_->UnregisterFoldStatusListener(listener);
1531 return pImpl_->RegisterDisplayUpdateListener(listener);
1560 return pImpl_->UnregisterDisplayUpdateListener(listener);
1614 return pImpl_->RegisterDisplayModeListener(listener);
1643 return pImpl_->UnregisterDisplayModeListener(listener);
1671 return pImpl_->RegisterAvailableAreaListener(listener);
1700 return pImpl_->UnregisterAvailableAreaListener(listener);
1901 return pImpl_->SetDisplayState(state, callback);
1998 WLOGFE("dms is dying, pImpl_ is nullptr");
2001 pImpl_->OnRemoteDied();
2006 return pImpl_->ConvertScreenIdToRsScreenId(screenId, rsScreenId);
2033 return pImpl_->ProxyForFreeze(pidList, isProxy);
2043 return pImpl_->ResetAllFreezeStatus();
2054 return pImpl_->SetVirtualScreenSecurityExemption(screenId, pid, windowIdList);