Lines Matching refs:oss
161 std::ostringstream oss;
162 oss << "--------------------------------------Free Screen"
165 oss << "ScreenName Type IsGroup DmsId RsId ActiveIdx VPR Rotation Orientation "
176 GetScreenInfo(screen, oss);
183 oss << "total screen num: " << screenIds.size() << std::endl;
184 dumpInfo.append(oss.str());
200 std::ostringstream oss;
201 oss << "-------------------------------------ScreenGroup " << screenGroup->dmsId_
204 oss << "ScreenName Type IsGroup DmsId RsId "
210 GetScreenInfo(screen, oss);
212 dumpInfo.append(oss.str());
231 std::ostringstream oss;
232 oss << "ScreenName: " << screenName << std::endl;
233 oss << "Type: " << screenType << std::endl;
234 oss << "IsGroup: " << isGroup << std::endl;
235 oss << "DmsId: " << screen->dmsId_ << std::endl;
236 oss << "RsId: " << screen->rsId_ << std::endl;
237 oss << "GroupDmsId: " << screen->groupDmsId_ << std::endl;
238 oss << "ActiveIdx: " << screen->activeIdx_ << std::endl;
239 oss << "VPR: " << screen->virtualPixelRatio_ << std::endl;
240 oss << "Rotation: " << static_cast<uint32_t>(screen->rotation_) << std::endl;
241 oss << "Orientation: " << static_cast<uint32_t>(screen->orientation_) << std::endl;
242 oss << "RequestOrientation: " << static_cast<uint32_t>(screen->screenRequestedOrientation_) << std::endl;
243 oss << "NodeId: " << nodeId << std::endl;
244 oss << "IsMirrored: " << isMirrored << std::endl;
245 oss << "MirrorNodeId: " << screen->rSDisplayNodeConfig_.mirrorNodeId << std::endl;
246 dumpInfo.append(oss.str());
253 std::ostringstream oss;
254 oss << "--------------------------------------Display Info"
257 oss << "DisplayId ScreenId RefreshRate VPR Rotation Orientation DisplayOrientation FreezeFlag [ x y w h ]"
266 GetDisplayInfo(display, oss);
268 dumpInfo.append(oss.str());
279 std::ostringstream oss;
280 oss << "DisplayId: " << display->GetId() << std::endl;
281 oss << "ScreenId: " << display->GetAbstractScreenId() << std::endl;
282 oss << "RefreshRate: " << display->GetRefreshRate() << std::endl;
283 oss << "VPR: " << display->GetVirtualPixelRatio() << std::endl;
284 oss << "Rotation: " << static_cast<uint32_t>(display->GetRotation()) << std::endl;
285 oss << "Orientation: " << static_cast<uint32_t>(display->GetOrientation()) << std::endl;
286 oss << "DisplayOrientation: " << static_cast<uint32_t>(display->GetDisplayOrientation()) << std::endl;
287 oss << "FreezeFlag: " << static_cast<uint32_t>(display->GetFreezeFlag()) << std::endl;
288 oss << "DisplayRect: " << "[ "
291 dumpInfo.append(oss.str());
327 void DisplayDumper::GetScreenInfo(const sptr<AbstractScreen>& screen, std::ostringstream& oss) const
342 oss << std::left << std::setw(W_SCREEN_NAME) << screenName
358 void DisplayDumper::GetDisplayInfo(const sptr<AbstractDisplay>& display, std::ostringstream& oss) const
365 oss << std::left << std::setw(W_DISPLAY_ID) << display->GetId()