Lines Matching defs:display

49     WLOGFD("display controller init");

80 WLOGFE("display id is invalid.");
100 sptr<AbstractDisplay> display = iter.second;
101 if (display->GetAbstractScreenId() == screenId) {
102 return display;
321 WLOGFI("Not enable waterfall display area compression.");
334 WLOGFW("Invalid value for waterfall display curved area avoid size of each sides");
372 WLOGFD("find abstract display of the screen. display %{public}" PRIu64", screen %{public}" PRIu64"",
385 WLOGFE("Screen combination is SCREEN_ALONE or SCREEN_EXPAND, cannot find abstract display of the screen");
407 WLOGFD("find abstract display of the screen. display %{public}" PRIu64", screen %{public}" PRIu64"",
421 WLOGFE("cannot find abstract display of the screen %{public}" PRIu64"", absScreen->dmsId_);
465 WLOGFI("Notify display size change. Id %{public}" PRIu64"", iter->first);
496 WLOGFD("keep display size. display:%{public}" PRIu64"", absDisplay->GetId());
510 WLOGFD("keep display offset. display:%{public}" PRIu64"", absDisplay->GetId());
531 WLOGFD("find abstract display of the screen. display %{public}" PRIu64", screen %{public}" PRIu64"",
538 WLOGE("Failed to find abstract display of the screen.");
568 sptr<AbstractDisplay> display = new(std::nothrow) AbstractDisplay(displayId, info, realAbsScreen);
569 if (display == nullptr) {
570 WLOGFE("create display failed");
574 abstractDisplayMap_.insert((std::make_pair(display->GetId(), display)));
575 WLOGI("create display for new screen. screen:%{public}" PRIu64", display:%{public}" PRIu64"",
576 realAbsScreen->dmsId_, display->GetId());
577 DisplayManagerAgentController::GetInstance().OnDisplayCreate(display->ConvertToDisplayInfo());
578 SetDisplayStateChangeListener(display, DisplayStateChangeType::CREATE);
580 WLOGI("bind display for new screen. screen:%{public}" PRIu64", display:%{public}" PRIu64"",
597 WLOGI("bind display to mirror. screen:%{public}" PRIu64"", absScreen->dmsId_);
609 WLOGE("error, screenId: %{public}" PRIu64" already has corresponding display",
614 WLOGI("bind display to expand. screen:%{public}" PRIu64"", absScreen->dmsId_);
621 WLOGE("bind display error, cannot get defaultScreen.");
630 WLOGE("bind display error, cannot get info.");
634 sptr<AbstractDisplay> display = new AbstractDisplay(displayId, info, absScreen);
637 display->SetOffset(point.posX_, point.posY_);
638 abstractDisplayMap_.insert((std::make_pair(display->GetId(), display)));
639 WLOGI("create display for new screen. screen:%{public}" PRIu64", display:%{public}" PRIu64"",
640 absScreen->dmsId_, display->GetId());
641 DisplayManagerAgentController::GetInstance().OnDisplayCreate(display->ConvertToDisplayInfo());
642 SetDisplayStateChangeListener(display, DisplayStateChangeType::CREATE);
655 WLOGI("setfreeze display %{public}" PRIu64"", displayId);
659 WLOGE("setfreeze fail, cannot get display %{public}" PRIu64"", displayId);
666 WLOGE("setfreeze fail, display %{public}" PRIu64" freezeflag is %{public}u",
687 sptr<AbstractDisplay> display = iter.second;
688 if (display->GetAbstractScreenGroupId() == screenGroupId) {
689 displayInfoMap.insert(std::make_pair(display->GetId(), display->ConvertToDisplayInfo()));