Home
last modified time | relevance | path

Searched refs:windowId (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/view/accessibility/
DAccessibilityCache.java60 final int windowId = window.getId(); in addWindow() local
61 AccessibilityWindowInfo oldWindow = mWindowCache.get(windowId); in addWindow()
65 mWindowCache.put(windowId, AccessibilityWindowInfo.obtain(window)); in addWindow()
111 final int windowId = event.getWindowId(); in onAccessibilityEvent() local
115 clearSubTreeLocked(windowId, sourceId); in onAccessibilityEvent()
117 refreshCachedNodeLocked(windowId, sourceId); in onAccessibilityEvent()
138 private void refreshCachedNodeLocked(int windowId, long sourceId) { in refreshCachedNodeLocked() argument
143 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId); in refreshCachedNodeLocked()
157 clearSubTreeLocked(windowId, sourceId); in refreshCachedNodeLocked()
168 public AccessibilityNodeInfo getNode(int windowId, long accessibilityNodeId) { in getNode() argument
[all …]
DIAccessibilityManager.aidl61 IBinder getWindowToken(int windowId); in getWindowToken() argument
DAccessibilityRecord.java177 public void setWindowId(int windowId) { in setWindowId() argument
178 mSourceWindowId = windowId; in setWindowId()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java531 final int windowId = sNextWindowId++; in addAccessibilityInteractionConnection() local
537 windowId, connection, UserHandle.USER_ALL); in addAccessibilityInteractionConnection()
539 mGlobalInteractionConnections.put(windowId, wrapper); in addAccessibilityInteractionConnection()
540 mGlobalWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
543 … + " with windowId: " + windowId + " and token: " + windowToken.asBinder()); in addAccessibilityInteractionConnection()
547 windowId, connection, resolvedUserId); in addAccessibilityInteractionConnection()
550 userState.mInteractionConnections.put(windowId, wrapper); in addAccessibilityInteractionConnection()
551 userState.mWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
554 + " with windowId: " + windowId + " and userId:" + mCurrentUserId in addAccessibilityInteractionConnection()
558 return windowId; in addAccessibilityInteractionConnection()
[all …]
/frameworks/base/core/java/android/app/
DIUiAutomationConnection.aidl42 boolean clearWindowContentFrameStats(int windowId); in clearWindowContentFrameStats() argument
43 WindowContentFrameStats getWindowContentFrameStats(int windowId); in getWindowContentFrameStats() argument
DUiAutomation.java720 public boolean clearWindowContentFrameStats(int windowId) { in clearWindowContentFrameStats() argument
726 Log.i(LOG_TAG, "Clearing content frame stats for window: " + windowId); in clearWindowContentFrameStats()
729 return mUiAutomationConnection.clearWindowContentFrameStats(windowId); in clearWindowContentFrameStats()
765 public WindowContentFrameStats getWindowContentFrameStats(int windowId) { in getWindowContentFrameStats() argument
771 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId); in getWindowContentFrameStats()
774 return mUiAutomationConnection.getWindowContentFrameStats(windowId); in getWindowContentFrameStats()
DUiAutomationConnection.java160 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException { in clearWindowContentFrameStats() argument
168 IBinder token = mAccessibilityManager.getWindowToken(windowId); in clearWindowContentFrameStats()
179 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException { in getWindowContentFrameStats() argument
187 IBinder token = mAccessibilityManager.getWindowToken(windowId); in getWindowContentFrameStats()
/frameworks/base/core/java/android/transition/
DTransition.java1666 WindowId windowId = sceneRoot.getWindowId(); in pause() local
1669 if (info.view != null && windowId != null && windowId.equals(info.windowId)) { in pause()
1699 WindowId windowId = sceneRoot.getWindowId(); in resume() local
1702 if (info.view != null && windowId != null && windowId.equals(info.windowId)) { in resume()
1732 WindowId windowId = sceneRoot.getWindowId(); in playTransition() local
1737 if (oldInfo != null && oldInfo.view != null && oldInfo.windowId == windowId) { in playTransition()
2339 WindowId windowId; field in Transition.AnimationInfo
2343 WindowId windowId, TransitionValues values) { in AnimationInfo() argument
2347 this.windowId = windowId; in AnimationInfo()
/frameworks/base/core/java/android/accessibilityservice/
DIAccessibilityServiceConnection.aidl57 AccessibilityWindowInfo getWindow(int windowId); in getWindow() argument