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.java183 public void setWindowId(int windowId) { in setWindowId() argument
184 mSourceWindowId = windowId; in setWindowId()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java539 final int windowId = sNextWindowId++; in addAccessibilityInteractionConnection() local
545 windowId, connection, UserHandle.USER_ALL); in addAccessibilityInteractionConnection()
547 mGlobalInteractionConnections.put(windowId, wrapper); in addAccessibilityInteractionConnection()
548 mGlobalWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
551 … + " with windowId: " + windowId + " and token: " + windowToken.asBinder()); in addAccessibilityInteractionConnection()
555 windowId, connection, resolvedUserId); in addAccessibilityInteractionConnection()
558 userState.mInteractionConnections.put(windowId, wrapper); in addAccessibilityInteractionConnection()
559 userState.mWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
562 + " with windowId: " + windowId + " and userId:" + mCurrentUserId in addAccessibilityInteractionConnection()
566 return windowId; in addAccessibilityInteractionConnection()
[all …]
/frameworks/base/core/java/android/app/
DIUiAutomationConnection.aidl41 boolean clearWindowContentFrameStats(int windowId); in clearWindowContentFrameStats() argument
42 WindowContentFrameStats getWindowContentFrameStats(int windowId); in getWindowContentFrameStats() argument
DUiAutomation.java721 public boolean clearWindowContentFrameStats(int windowId) { in clearWindowContentFrameStats() argument
727 Log.i(LOG_TAG, "Clearing content frame stats for window: " + windowId); in clearWindowContentFrameStats()
730 return mUiAutomationConnection.clearWindowContentFrameStats(windowId); in clearWindowContentFrameStats()
766 public WindowContentFrameStats getWindowContentFrameStats(int windowId) { in getWindowContentFrameStats() argument
772 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId); in getWindowContentFrameStats()
775 return mUiAutomationConnection.getWindowContentFrameStats(windowId); in getWindowContentFrameStats()
DUiAutomationConnection.java164 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException { in clearWindowContentFrameStats() argument
172 IBinder token = mAccessibilityManager.getWindowToken(windowId); in clearWindowContentFrameStats()
183 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException { in getWindowContentFrameStats() argument
191 IBinder token = mAccessibilityManager.getWindowToken(windowId); in getWindowContentFrameStats()
/frameworks/base/core/java/android/transition/
DTransition.java1679 WindowId windowId = sceneRoot.getWindowId(); in pause() local
1682 if (info.view != null && windowId != null && windowId.equals(info.windowId)) { in pause()
1712 WindowId windowId = sceneRoot.getWindowId(); in resume() local
1715 if (info.view != null && windowId != null && windowId.equals(info.windowId)) { in resume()
1745 WindowId windowId = sceneRoot.getWindowId(); in playTransition() local
1750 if (oldInfo != null && oldInfo.view != null && oldInfo.windowId == windowId) { in playTransition()
2369 WindowId windowId; field in Transition.AnimationInfo
2373 WindowId windowId, TransitionValues values) { in AnimationInfo() argument
2377 this.windowId = windowId; in AnimationInfo()
/frameworks/base/core/java/android/accessibilityservice/
DIAccessibilityServiceConnection.aidl57 AccessibilityWindowInfo getWindow(int windowId); in getWindow() argument