Lines Matching defs:node

179     auto node = windowRoot_->GetWindowNode(windowId);
180 if (node == nullptr) {
185 AppendSpecifiedWindowNodeInfo(node, oss);
187 if (node->GetWindowToken() != nullptr) {
195 node->GetWindowToken()->DumpInfo(resetParams);
204 void WindowDumper::AppendSpecifiedWindowNodeInfo(const sptr<WindowNode>& node, std::ostringstream& oss)
206 Rect rect = node->GetWindowRect();
207 std::string isShown_ = node->startingWindowShown_ ? "true" : "false";
208 std::string visibilityState = std::to_string(node->GetVisibilityState());
209 std::string Focusable = node->GetWindowProperty()->GetFocusable() ? "true" : "false";
210 std::string DecoStatus = node->GetWindowProperty()->GetDecoStatus() ? "true" : "false";
211 bool PrivacyMode = node->GetWindowProperty()->GetSystemPrivacyMode() ||
212 node->GetWindowProperty()->GetPrivacyMode();
213 bool isSnapshotSkip = node->GetWindowProperty()->GetSnapshotSkip();
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;
224 oss << "FirstFrameCallbackCalled: " << node->firstFrameAvailable_ << std::endl;
235 node->GetTouchHotAreas(touchHotAreas);
291 auto node = windowRoot_->GetWindowForDumpAceHelpInfo();
292 if (node == nullptr) {
296 if (node->GetWindowToken() != nullptr) {
300 node->GetWindowToken()->DumpInfo(params);