Home
last modified time | relevance | path

Searched full:desktop (Results 1 – 25 of 3087) sorted by relevance

12345678910>>...124

/aosp_15_r20/prebuilts/jdk/jdk21/linux-x86/lib/
Dct.sym8/java.activation/javax/activation/ 8/java.activation/javax/activation ...
Dsrc.zipjava.base/com/sun/crypto/provider/AESCipher.java java.base/ ...
/aosp_15_r20/prebuilts/jdk/jdk21/darwin-x86/lib/
Dct.sym8/java.activation/javax/activation/ 8/java.activation/javax/activation ...
Dsrc.zipjava.base/apple/security/AppleProvider.java java.base/apple/security/ ...
/aosp_15_r20/prebuilts/jdk/jdk21/darwin-arm64/lib/
Dct.sym8/java.activation/javax/activation/ 8/java.activation/javax/activation ...
Dsrc.zipjava.base/apple/security/AppleProvider.java java.base/apple/security/ ...
/aosp_15_r20/external/webrtc/modules/desktop_capture/win/
H A Ddesktop.cc11 #include "modules/desktop_capture/win/desktop.h"
20 Desktop::Desktop(HDESK desktop, bool own) : desktop_(desktop), own_(own) {} in Desktop() argument
22 Desktop::~Desktop() { in ~Desktop()
25 RTC_LOG(LS_ERROR) << "Failed to close the owned desktop handle: " in ~Desktop()
31 bool Desktop::GetName(std::wstring* desktop_name_out) const { in GetName()
44 RTC_LOG(LS_ERROR) << "Failed to query the desktop name: " << GetLastError(); in GetName()
52 bool Desktop::IsSame(const Desktop& other) const { in IsSame()
64 bool Desktop::SetThreadDesktop() const { in SetThreadDesktop()
66 RTC_LOG(LS_ERROR) << "Failed to assign the desktop to the current thread: " in SetThreadDesktop()
74 Desktop* Desktop::GetDesktop(const WCHAR* desktop_name) { in GetDesktop()
[all …]
H A Ddesktop.h22 class RTC_EXPORT Desktop {
24 ~Desktop();
26 Desktop(const Desktop&) = delete;
27 Desktop& operator=(const Desktop&) = delete;
29 // Returns the name of the desktop represented by the object. Return false if
33 // Returns true if `other` has the same name as this desktop. Returns false
34 // in any other case including failing Win32 APIs and uninitialized desktop
36 bool IsSame(const Desktop& other) const;
38 // Assigns the desktop to the current thread. Returns false is the operation
42 // Returns the desktop by its name or NULL if an error occurs.
[all …]
H A Dscoped_thread_desktop.h22 class Desktop; variable
32 // Returns true if `desktop` has the same desktop name as the currently
33 // assigned desktop (if assigned) or as the initial desktop (if not assigned).
35 // uninitialized desktop handles.
36 bool IsSame(const Desktop& desktop);
38 // Reverts the calling thread to use the initial desktop.
41 // Assigns `desktop` to be the calling thread. Returns true if the thread has
42 // been switched to `desktop` successfully. Takes ownership of `desktop`.
43 bool SetThreadDesktop(Desktop* desktop);
46 // The desktop handle assigned to the calling thread by Set
[all …]
H A Dscoped_thread_desktop.cc13 #include "modules/desktop_capture/win/desktop.h"
18 : initial_(Desktop::GetThreadDesktop()) {} in ScopedThreadDesktop()
24 bool ScopedThreadDesktop::IsSame(const Desktop& desktop) { in IsSame() argument
26 return assigned_->IsSame(desktop); in IsSame()
28 return initial_->IsSame(desktop); in IsSame()
39 bool ScopedThreadDesktop::SetThreadDesktop(Desktop* desktop) { in SetThreadDesktop() argument
42 std::unique_ptr<Desktop> scoped_desktop(desktop); in SetThreadDesktop()
44 if (initial_->IsSame(*desktop)) in SetThreadDesktop()
47 if (!desktop->SetThreadDesktop()) in SetThreadDesktop()
/aosp_15_r20/frameworks/base/core/java/android/window/flags/
H A Dlse_desktop_experience.aconfig7 description: "Enables desktop windowing"
21 …description: "Enables new initial bounds for desktop windowing which adjust depending on app const…
35 description: "Stops non-resizable app desktop windows from being snap resized"
42 description: "Enables a limit on the number of Tasks shown in Desktop Mode"
56 description: "Shows running apps in Desktop Mode Taskbar"
73 description: "Enables desktop wallpaper activity to show wallpaper in the desktop mode"
87 description: "Enables quick switch for desktop mode"
135 …description: "Enables drawing a divider bar upon tiling tasks left and right in desktop mode for s…
152 …description: "Whether to apply Camera Compat treatment to fixed-orientation apps in desktop window…
166 …Whether to enable min/max window size constraints when resizing a window in desktop windowing mode"
[all …]
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/
H A DDesktopModeStatus.java31 * Constants for desktop mode feature
51 * Flag to indicate whether to apply shadows to windows in desktop mode.
57 * Flag to indicate whether to apply shadows to the focused window in desktop mode.
65 * Flag to indicate whether to use rounded corners for windows in desktop mode.
71 * Flag to indicate whether to restrict desktop mode to supported devices.
80 /** Whether the desktop density override is enabled. */
84 /** Override density for tasks when they're inside the desktop. */
88 /** The minimum override density allowed for tasks inside the desktop. */
91 /** The maximum override density allowed for tasks inside the desktop. */
98 * Sysprop declaring whether to enters desktop mode by default when the windowing mode of the
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Dmsilib.rst132 `UuidCreate <https://msdn.microsoft.com/en-us/library/windows/desktop/aa379205.aspx>`_
133 `UuidToString <https://msdn.microsoft.com/en-us/library/windows/desktop/aa379352.aspx>`_
167 `MSIDatabaseOpenView <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370082.aspx>`_
168 `MSIDatabaseCommit <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370075.aspx>`_
169 …`MSIGetSummaryInformation <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370301.aspx>…
170 `MsiCloseHandle <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370067.aspx>`_
216 `MsiViewExecute <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370513.aspx>`_
217 `MSIViewGetColumnInfo <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370516.aspx>`_
218 `MsiViewFetch <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370514.aspx>`_
219 `MsiViewModify <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370519.aspx>`_
[all …]
/aosp_15_r20/packages/apps/Launcher3/quickstep/src/com/android/launcher3/statehandlers/
DDesktopVisibilityController.java49 * Controls the visibility of the workspace and the resumed / paused state when desktop mode
81 /** Register a listener with System UI to receive updates about desktop tasks state */
109 * Whether desktop tasks are visible in desktop mode.
120 * Number of visible desktop windows in desktop mode.
126 /** Registers a listener for Desktop Mode visibility updates. */
131 /** Removes a previously registered Desktop Mode visibility listener. */
136 /** Registers a listener for Taskbar changes in Desktop Mode. */
141 /** Removes a previously registered listener for Taskbar changes in Desktop Mode. */
147 * Sets the number of desktop windows that are visible and updates launcher visibility based on
175 // When desktop tasks are visible & we're not in overview, we want launcher in setVisibleDesktopTasksCount()
[all …]
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/persistence/
H A DDesktopPersistentRepository.kt39 * Persistent repository for storing desktop mode related data. in <lambda>()
62 "Error in reading desktop mode related data from datastore, data is " + in <lambda>()
92 * Reads the [Desktop] of a desktop filtering by the [userId] and [desktopId]. Executes the in <lambda>()
95 suspend fun readDesktop(userId: Int, desktopId: Int = DEFAULT_DESKTOP_ID): Desktop? = in <lambda>()
100 Log.e(TAG, "Unable to get desktop info from persistent repository", e) in <lambda>()
104 /** Adds or updates a desktop stored in the datastore */ in <lambda>()
120 val desktop = in <lambda>() constant
130 … currentRepository.toBuilder().putDesktop(desktopId, desktop.build()).build(), in <lambda>()
137 "Error in updating desktop mode related data, data is " + in <lambda>()
144 private fun getDesktop(currentRepository: DesktopRepositoryState, desktopId: Int): Desktop = in <lambda>()
[all …]
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
H A DDesktopTasksController.kt141 /** Handles moving tasks in and out of desktop */ in <lambda>()
295 /** Show all tasks, that are part of the desktop, on top of launcher */ in <lambda>()
314 /** Returns true if any tasks are visible in Desktop Mode. */ in <lambda>()
317 /** Moves focused task to desktop mode for given [displayId]. */ in <lambda>()
329 // task to move to desktop. in <lambda>()
337 "DesktopTasksController: Cannot enter desktop, expected less " + in <lambda>()
381 /** Moves task to desktop mode if task is running, else launches it in desktop mode. */ in <lambda>()
442 /** Moves a running task to desktop. */ in <lambda>()
453 logW("Cannot enter desktop for taskId %d, ineligible top activity found", task.taskId) in <lambda>()
488 * The first part of the animated drag to desktop transition. This is followed with a call to in <lambda>()
[all …]
H A DDesktopRepository.kt40 /** Tracks desktop data for Android Desktop Windowing. */ in <lambda>()
47 * Task data tracked per desktop. in <lambda>()
49 * @property activeTasks task ids of active tasks currently or previously visible in Desktop in <lambda>()
50 * mode session. Tasks become inactive when task closes or when desktop mode session ends. in <lambda>()
52 * might be other active tasks in desktop mode that are not visible. in <lambda>()
56 * @property fullImmersiveTaskId the task id of the desktop task that is in full-immersive mode. in <lambda>()
94 /* Tracks corner/caption regions of desktop tasks, used to determine gesture exclusion. */ in <lambda>()
139 /** Adds [regionListener] to inform about changes to exclusion regions for all Desktop tasks. */ in <lambda>()
148 /** Creates a new merged region representative of all exclusion regions in all desktop tasks. */ in <lambda>()
417 * Removes the desktop for the given [displayId] and returns the active tasks on that desktop. in <lambda>()
[all …]
H A DDesktopMixedTransitionHandler.kt49 /** The [Transitions.TransitionHandler] coordinates transition handlers in desktop windowing. */ in <lambda>()
84 /** Starts close transition and handles or delegates desktop task close animation. */ in <lambda>()
160 ?: return false.also { logV("No pending desktop transition") } in <lambda>()
202 logW("Should have closing desktop task") in <lambda>()
206 // If the wallpaper activity is closing then the desktop is closing, animate the closing in <lambda>()
207 // desktop by dispatching to other transition handlers. in <lambda>()
217 // Animate close desktop task transition with [CloseDesktopTaskTransitionHandler]. in <lambda>()
316 logW("Should have minimizing desktop task") in <lambda>()
320 // Dispatch close desktop task animation to the default transition handlers. in <lambda>()
330 // Animate minimizing desktop task transition with [DesktopBackNavigationTransitionHandler]. in <lambda>()
[all …]
H A DDesktopModeUiEventLogger.kt29 /** Log Aster UIEvents for desktop windowing mode. */
98 /** Enums for logging desktop windowing mode UiEvents. */
101 @UiEvent(doc = "Resize the window in desktop windowing mode by dragging the edge")
103 @UiEvent(doc = "Resize the window in desktop windowing mode by dragging the corner")
105 @UiEvent(doc = "Tap on the window header maximize button in desktop windowing mode")
107 @UiEvent(doc = "Tap on the window header restore button in desktop windowing mode")
109 @UiEvent(doc = "Double tap on window header to maximize it in desktop windowing mode")
111 @UiEvent(doc = "Double tap on window header to restore from maximize in desktop windowing")
115 @UiEvent(doc = "Tap on the desktop mode option under app handle menu")
121 @UiEvent(doc = "When user successfully drags the app handle to desktop mode")
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/libs/WindowManager/Shell/WindowManager-Shell-lite-proto/android_common/javac/
DWindowManager-Shell-lite-proto.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/libs/WindowManager/Shell/WindowManager-Shell-lite-proto/android_common/repackaged-jarjar/javac/
DWindowManager-Shell-lite-proto.jarcom/android/wm/shell/desktopmode/persistence/PersistentDesktopRepositories.class PersistentDesktopRepositories.java package ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/libs/WindowManager/Shell/WindowManager-Shell-lite-proto/android_common/turbine/
DWindowManager-Shell-lite-proto.jarcom/android/wm/shell/desktopmode/education/data/WindowingEducation.class <Unknown ...
/aosp_15_r20/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaplTestsOverviewDesktop.kt34 /** Test Desktop windowing in Overview. */ in <lambda>()
52 moveTaskToDesktop(TEST_ACTIVITY_2) // Move last launched TEST_ACTIVITY_2 into Desktop in <lambda>()
54 // Scroll back to TEST_ACTIVITY_1, then move it into Desktop in <lambda>()
64 val desktop = in <lambda>() constant
69 desktop.switchToOverview().getTestActivityTask(TEST_ACTIVITIES).open() in <lambda>()
98 assertWithMessage("The current task is not a Desktop.").that(desktopTask.isDesktop).isTrue() in <lambda>()
113 val desktop = moveTaskToDesktop(TEST_ACTIVITY_EXTRA) in <lambda>() constant
114 var overview = desktop.switchToOverview() in <lambda>()
117 // its both sides (grid task on left and desktop tasks at its right side) in <lambda>()
120 // Fling to desktop task and dismiss the focused task to check repositioning of in <lambda>()
[all …]
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/res/values/
H A Ddimen.xml434 <!-- Height of desktop mode caption for freeform tasks. -->
437 <!-- Height of desktop mode caption for fullscreen tasks. -->
440 <!-- Width of desktop mode caption for fullscreen tasks.
478 <!-- The default minimum allowed window width when resizing a window in desktop mode. -->
481 <!-- The default minimum allowed window height when resizing a window in desktop mode. -->
484 <!-- The width of the maximize menu in desktop mode, depending on the number of options -->
489 <!-- The height of the maximize menu in desktop mode. -->
492 <!-- The padding of the maximize menu in desktop mode. -->
522 <!-- The width of the handle menu in desktop mode. -->
525 <!-- The maximum height of the handle menu in desktop mode. Three pills at 52dp each,
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/Launcher3/Launcher3QuickStepLib/android_common/kapt/gen/stubs/com/android/launcher3/desktop/
DDesktopAppLaunchTransition.java1 package com.android.launcher3.desktop;
22 * [android.window.RemoteTransition] for Desktop app launches.
28desktop/DesktopAppLaunchTransition;", "Landroid/window/RemoteTransitionStub;", "context", "Landroi…
35 …private final com.android.launcher3.desktop.DesktopAppLaunchTransition.AppLaunchType launchType = …
38 * Change modes that represent a task becoming visible / launching in Desktop mode.
47 …public static final com.android.launcher3.desktop.DesktopAppLaunchTransition.Companion Companion =…
52 com.android.launcher3.desktop.DesktopAppLaunchTransition.AppLaunchType launchType) { in DesktopAppLaunchTransition()
83 …4\b\t\u0010\nj\u0002\b\u000bj\u0002\b\f"}, d2 = {"Lcom/android/launcher3/desktop/DesktopAppLaunchT…
104 …public static kotlin.enums.EnumEntries<com.android.launcher3.desktop.DesktopAppLaunchTransition.Ap… in getEntries()
109 …X\u0082\u0004\u00a2\u0006\u0002\n\u0000"}, d2 = {"Lcom/android/launcher3/desktop/DesktopAppLaunchT…
[all …]

12345678910>>...124