/foundation/window/window_manager/wmserver/src/ |
H A D | window_node_container.cpp | 108 uint32_t windowNumber = 0; in GetWindowCountByType() local 109 auto counter = [&windowNumber, &windowType](sptr<WindowNode>& windowNode) { in GetWindowCountByType() 111 ++windowNumber; in GetWindowCountByType() 117 return windowNumber; in GetWindowCountByType() 122 uint32_t windowNumber = 0; in GetMainFloatingWindowCount() local 123 auto counter = [&windowNumber](sptr<WindowNode>& windowNode) { in GetMainFloatingWindowCount() 128 ++windowNumber; in GetMainFloatingWindowCount() 133 return windowNumber; in GetMainFloatingWindowCount() 2020 auto windowNumber = GetMainFloatingWindowCount(); in MinimizeOldestMainFloatingWindow() local 2021 if (windowNumber < in MinimizeOldestMainFloatingWindow() [all...] |
/foundation/window/window_manager/window_scene/session_manager/include/zidl/ |
H A D | scene_session_manager_proxy.h | 127 WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber,
|
H A D | scene_session_manager_interface.h | 305 WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber, int32_t x, int32_t y,
|
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_manager_napi/ |
H A D | js_window_manager.cpp | 1225 int32_t windowNumber = 0;
in OnGetWindowsByCoordinate() local 1226 if (argc > ARGC_ONE && !ConvertFromJsValue(env, argv[ARGC_ONE], windowNumber)) {
in OnGetWindowsByCoordinate() 1227 windowNumber = 0;
in OnGetWindowsByCoordinate() 1239 [displayId, windowNumber, x, y](napi_env env, NapiAsyncTask& task, int32_t status) {
in OnGetWindowsByCoordinate() 1242 GetWindowIdsByCoordinate(static_cast<uint64_t>(displayId), windowNumber, x, y, windowIds));
in OnGetWindowsByCoordinate()
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window_manager.h | 809 * @param windowNumber indicates the number of query windows 815 WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber,
|
/foundation/window/window_manager/wm/include/ |
H A D | window_adapter.h | 139 virtual WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber,
|
/foundation/window/window_manager/wmserver/include/zidl/ |
H A D | window_manager_interface.h | 247 virtual WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber, in GetWindowIdsByCoordinate() argument
|
/foundation/window/window_manager/wm/src/ |
H A D | window_adapter.cpp | 949 WMError WindowAdapter::GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber, in GetWindowIdsByCoordinate() argument 955 return wmsProxy->GetWindowIdsByCoordinate(displayId, windowNumber, x, y, windowIds); in GetWindowIdsByCoordinate()
|
H A D | window_manager.cpp | 1429 WMError WindowManager::GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber,
in GetWindowIdsByCoordinate() argument 1433 displayId, windowNumber, x, y, windowIds);
in GetWindowIdsByCoordinate()
|
/foundation/window/window_manager/window_scene/session_manager/src/zidl/ |
H A D | scene_session_manager_stub.cpp | 1217 int32_t windowNumber; in HandleGetWindowIdsByCoordinate() local 1218 if (!data.ReadInt32(windowNumber)) { in HandleGetWindowIdsByCoordinate() 1219 TLOGE(WmsLogTag::DEFAULT, "read windowNumber failed"); in HandleGetWindowIdsByCoordinate() 1229 WMError errCode = GetWindowIdsByCoordinate(displayId, windowNumber, x, y, windowIds); in HandleGetWindowIdsByCoordinate()
|
H A D | scene_session_manager_proxy.cpp | 2356 WMError SceneSessionManagerProxy::GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber, in GetWindowIdsByCoordinate() argument 2370 if (!data.WriteInt32(windowNumber)) { in GetWindowIdsByCoordinate() 2371 TLOGE(WmsLogTag::DEFAULT, "Write windowNumber failed"); in GetWindowIdsByCoordinate()
|
/foundation/window/window_manager/window_scene/session_manager/include/ |
H A D | scene_session_manager.h | 406 WMError GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber,
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | scene_session_manager.cpp | 10565 WMError SceneSessionManager::GetWindowIdsByCoordinate(DisplayId displayId, int32_t windowNumber, in GetWindowIdsByCoordinate() argument 10568 TLOGD(WmsLogTag::DEFAULT, "displayId %{public}" PRIu64 " windowNumber %{public}d x %{public}d y %{public}d", in GetWindowIdsByCoordinate() 10569 displayId, windowNumber, x, y); in GetWindowIdsByCoordinate() 10574 bool findAllWindow = windowNumber <= 0; in GetWindowIdsByCoordinate() 10578 findAllWindow, &windowNumber, &windowIds](const sptr<SceneSession>& session) { in GetWindowIdsByCoordinate() 10586 if (!findAllWindow && windowNumber == 0) { in GetWindowIdsByCoordinate() 10602 windowNumber--; in GetWindowIdsByCoordinate()
|