Lines Matching refs:display
61 DISPLAY_TEST_CHK_RETURN((iter == displays_.end()), nullptr, DISPLAY_TEST_LOGD("can not find the display %{public}u",
69 std::shared_ptr<HdiTestDisplay> display = GetDisplayFromId(id);
70 if (display == nullptr) {
71 DISPLAY_TEST_LOGD("the display not find will creat a display");
73 display = std::make_shared<HdiTestDisplay>(id, displayDevice_);
74 ret = display->Init();
75 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), nullptr, DISPLAY_TEST_LOGE("can not init the display"));
76 displays_.emplace(id, display);
78 return display;