Lines Matching refs:oss

84     std::ostringstream oss;
85 oss << "-------------------------------------ScreenGroup " << screenGroupId
88 oss << "WindowName DisplayId Pid WinId Type Mode Flag ZOrd Orientation [ x y w h ]"
98 oss << "---------------------------------------------------------------------------------------"
106 AppendWindowNodeInfo(windowNode, zOrder, oss);
108 oss << "Focus window: " << windowNodeContainer->GetFocusWindow() << std::endl;
109 oss << "total window num: " << windowRoot_->GetTotalWindowNum()<< std::endl;
110 dumpInfo.append(oss.str());
114 void WindowDumper::AppendWindowNodeInfo(const sptr<WindowNode>& windowNode, int zOrder, std::ostringstream& oss)
120 oss << std::left << std::setw(21) << windowName // 21 is width
184 std::ostringstream oss;
185 AppendSpecifiedWindowNodeInfo(node, oss);
186 dumpInfo.append(oss.str());
204 void WindowDumper::AppendSpecifiedWindowNodeInfo(const sptr<WindowNode>& node, std::ostringstream& oss)
215 oss << "WindowName: " << node->GetWindowName() << std::endl;
216 oss << "DisplayId: " << node->GetDisplayId() << std::endl;
217 oss << "WinId: " << node->GetWindowId() << std::endl;
218 oss << "Pid: " << node->GetCallingPid() << std::endl;
219 oss << "Type: " << static_cast<uint32_t>(node->GetWindowType()) << std::endl;
220 oss << "Mode: " << static_cast<uint32_t>(node->GetWindowMode()) << std::endl;
221 oss << "Flag: " << node->GetWindowFlags() << std::endl;
222 oss << "Orientation: " << static_cast<uint32_t>(node->GetRequestedOrientation()) << std::endl;
223 oss << "IsStartingWindow: " << isShown_ << std::endl;
224 oss << "FirstFrameCallbackCalled: " << node->firstFrameAvailable_ << std::endl;
225 oss << "VisibilityState: " << visibilityState << std::endl;
226 oss << "Focusable: " << Focusable << std::endl;
227 oss << "DecoStatus: " << DecoStatus << std::endl;
228 oss << "IsPrivacyMode: " << isPrivacyMode << std::endl;
229 oss << "isSnapshotSkip: " << isSnapshotSkip << std::endl;
230 oss << "WindowRect: " << "[ "
233 oss << "TouchHotAreas: ";
238 oss << "[ " << area.posX_ << ", " << area.posY_ << ", " << area.width_ << ", " << area.height_ << " ]";
241 oss <<", ";
244 oss << std::endl;