Lines Matching refs:windowProperty
1225 void WindowManagerService::NotifyServerReadyToMoveOrDrag(uint32_t windowId, sptr<WindowProperty>& windowProperty,
1228 if (windowProperty == nullptr || moveDragProperty == nullptr) {
1229 WLOGFE("windowProperty or moveDragProperty is invalid");
1233 auto task = [this, windowId, windowProperty, moveDragProperty]() mutable {
1236 windowProperty, moveDragProperty);
1326 WMError WindowManagerService::UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action,
1329 if (windowProperty == nullptr) {
1330 WLOGFE("windowProperty is nullptr");
1334 if ((windowProperty->GetWindowFlags() == static_cast<uint32_t>(WindowFlag::WINDOW_FLAG_FORBID_SPLIT_MOVE) ||
1341 WindowType type = windowProperty->GetWindowType();
1348 } else if (!accessTokenIdMaps_.isExist(windowProperty->GetWindowId(), IPCSkeleton::GetCallingTokenID()) &&
1360 windowProperty->isSystemCalling_ = Permission::IsSystemCalling();
1362 auto task = [this, windowProperty, action]() mutable {
1363 windowController_->UpdateProperty(windowProperty, action);
1370 auto task = [this, windowProperty, action]() mutable {
1372 WMError res = windowController_->UpdateProperty(windowProperty, action);
1374 windowProperty->GetWindowSizeChangeReason() == WindowSizeChangeReason::MOVE) {
1375 dragController_->UpdateDragInfo(windowProperty->GetWindowId());
1382 auto task = [this, &windowProperty, action]() {
1384 WMError res = windowController_->UpdateProperty(windowProperty, action);
1386 windowProperty->GetWindowSizeChangeReason() == WindowSizeChangeReason::MOVE) {
1387 dragController_->UpdateDragInfo(windowProperty->GetWindowId());