Lines Matching refs:oss

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