Home
last modified time | relevance | path

Searched refs:window (Results 1 – 25 of 241) sorted by relevance

12345678910

/frameworks/native/libs/nativewindow/
DANativeWindow.cpp30 static int32_t query(ANativeWindow* window, int what) { in query() argument
32 int res = window->query(window, what, &value); in query()
36 static bool isDataSpaceValid(ANativeWindow* window, int32_t dataSpace) { in isDataSpaceValid() argument
46 native_window_get_wide_color_support(window, &supported); in isDataSpaceValid()
50 native_window_get_hdr_support(window, &supported); in isDataSpaceValid()
61 void ANativeWindow_acquire(ANativeWindow* window) { in ANativeWindow_acquire() argument
63 window->incStrong((void*)ANativeWindow_acquire); in ANativeWindow_acquire()
66 void ANativeWindow_release(ANativeWindow* window) { in ANativeWindow_release() argument
68 window->decStrong((void*)ANativeWindow_acquire); in ANativeWindow_release()
71 int32_t ANativeWindow_getWidth(ANativeWindow* window) { in ANativeWindow_getWidth() argument
[all …]
/frameworks/native/libs/nativewindow/include/system/
Dwindow.h368 int (*setSwapInterval)(struct ANativeWindow* window,
388 int (*dequeueBuffer_DEPRECATED)(struct ANativeWindow* window,
402 int (*lockBuffer_DEPRECATED)(struct ANativeWindow* window,
424 int (*queueBuffer_DEPRECATED)(struct ANativeWindow* window,
432 int (*query)(const struct ANativeWindow* window,
449 int (*perform)(struct ANativeWindow* window,
469 int (*cancelBuffer_DEPRECATED)(struct ANativeWindow* window,
491 int (*dequeueBuffer)(struct ANativeWindow* window,
513 int (*queueBuffer)(struct ANativeWindow* window,
541 int (*cancelBuffer)(struct ANativeWindow* window,
[all …]
/frameworks/base/core/tests/coretests/src/android/database/
DCursorWindowTest.java39 CursorWindow window = new CursorWindow("MyWindow"); in testConstructor_WithName() local
40 assertEquals("MyWindow", window.getName()); in testConstructor_WithName()
41 assertEquals(0, window.getStartPosition()); in testConstructor_WithName()
42 window.close(); in testConstructor_WithName()
47 CursorWindow window = new CursorWindow(""); in testConstructorWithEmptyName() local
48 assertEquals("<unnamed>", window.getName()); in testConstructorWithEmptyName()
49 assertEquals(0, window.getStartPosition()); in testConstructorWithEmptyName()
50 window.close(); in testConstructorWithEmptyName()
55 CursorWindow window = new CursorWindow(null); in testConstructorWithNullName() local
56 assertEquals("<unnamed>", window.getName()); in testConstructorWithNullName()
[all …]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DSystemBarHelper.java76 final Window window = dialog.getWindow(); in hideSystemBars() local
77 temporarilyDisableDialogFocus(window); in hideSystemBars()
78 addVisibilityFlag(window, DIALOG_IMMERSIVE_FLAGS); in hideSystemBars()
79 addImmersiveFlagsToDecorView(window, DIALOG_IMMERSIVE_FLAGS); in hideSystemBars()
83 window.setNavigationBarColor(0); in hideSystemBars()
84 window.setStatusBarColor(0); in hideSystemBars()
97 public static void hideSystemBars(final Window window) { in hideSystemBars() argument
99 addVisibilityFlag(window, DEFAULT_IMMERSIVE_FLAGS); in hideSystemBars()
100 addImmersiveFlagsToDecorView(window, DEFAULT_IMMERSIVE_FLAGS); in hideSystemBars()
104 window.setNavigationBarColor(0); in hideSystemBars()
[all …]
/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp92 CursorWindow* window; in nativeCreate() local
93 status_t status = CursorWindow::create(name, cursorWindowSize, &window); in nativeCreate()
94 if (status || !window) { in nativeCreate()
102 LOG_WINDOW("nativeInitializeEmpty: window = %p", window); in nativeCreate()
103 return reinterpret_cast<jlong>(window); in nativeCreate()
109 CursorWindow* window; in nativeCreateFromParcel() local
110 status_t status = CursorWindow::createFromParcel(parcel, &window); in nativeCreateFromParcel()
111 if (status || !window) { in nativeCreateFromParcel()
120 window->getNumRows(), window->getNumColumns(), window); in nativeCreateFromParcel()
121 return reinterpret_cast<jlong>(window); in nativeCreateFromParcel()
[all …]
Dandroid_view_TextureView.cpp105 static int32_t native_window_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer, in native_window_lock() argument
107 return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds); in native_window_lock()
110 static int32_t native_window_unlockAndPost(ANativeWindow* window) { in native_window_unlockAndPost() argument
111 return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST); in native_window_unlockAndPost()
118 sp<ANativeWindow> window = new Surface(producer, true); in android_view_TextureView_createNativeWindow() local
120 window->incStrong((void*)android_view_TextureView_createNativeWindow); in android_view_TextureView_createNativeWindow()
121 SET_LONG(textureView, gTextureViewClassInfo.nativeWindow, jlong(window.get())); in android_view_TextureView_createNativeWindow()
130 sp<ANativeWindow> window(nativeWindow); in android_view_TextureView_destroyNativeWindow() local
131 window->decStrong((void*)android_view_TextureView_createNativeWindow); in android_view_TextureView_destroyNativeWindow()
155 sp<ANativeWindow> window((ANativeWindow*) nativeWindow); in android_view_TextureView_lockCanvas() local
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/mock/
DNativeWindow.cpp23 static int forwardSetSwapInterval(ANativeWindow* window, int interval) { in forwardSetSwapInterval() argument
24 return static_cast<NativeWindow*>(window)->setSwapInterval(interval); in forwardSetSwapInterval()
27 static int forwardDequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd) { in forwardDequeueBuffer() argument
28 return static_cast<NativeWindow*>(window)->dequeueBuffer(buffer, fenceFd); in forwardDequeueBuffer()
31 static int forwardCancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) { in forwardCancelBuffer() argument
32 return static_cast<NativeWindow*>(window)->cancelBuffer(buffer, fenceFd); in forwardCancelBuffer()
35 static int forwardQueueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) { in forwardQueueBuffer() argument
36 return static_cast<NativeWindow*>(window)->queueBuffer(buffer, fenceFd); in forwardQueueBuffer()
39 static int forwardQuery(const ANativeWindow* window, int what, int* value) { in forwardQuery() argument
40 return static_cast<const NativeWindow*>(window)->query(what, value); in forwardQuery()
[all …]
/frameworks/native/services/surfaceflinger/tests/unittests/mock/system/window/
DMockNativeWindow.cpp23 int dispatch_setSwapInterval(struct ANativeWindow* window, int interval) { in dispatch_setSwapInterval() argument
24 return static_cast<NativeWindow*>(window)->setSwapInterval(interval); in dispatch_setSwapInterval()
27 int dispatch_dequeueBuffer_DEPRECATED(struct ANativeWindow* window, in dispatch_dequeueBuffer_DEPRECATED() argument
29 return static_cast<NativeWindow*>(window)->dequeueBuffer_DEPRECATED(buffer); in dispatch_dequeueBuffer_DEPRECATED()
32 int dispatch_lockBuffer_DEPRECATED(struct ANativeWindow* window, in dispatch_lockBuffer_DEPRECATED() argument
34 return static_cast<NativeWindow*>(window)->lockBuffer_DEPRECATED(buffer); in dispatch_lockBuffer_DEPRECATED()
37 int dispatch_queueBuffer_DEPRECATED(struct ANativeWindow* window, in dispatch_queueBuffer_DEPRECATED() argument
39 return static_cast<NativeWindow*>(window)->queueBuffer_DEPRECATED(buffer); in dispatch_queueBuffer_DEPRECATED()
42 int dispatch_query(const struct ANativeWindow* window, int what, int* value) { in dispatch_query() argument
43 return static_cast<const NativeWindow*>(window)->query(what, value); in dispatch_query()
[all …]
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTaskSnapshotCacheTest.java53 final WindowState window = createWindow(null, FIRST_APPLICATION_WINDOW, "window"); in testAppRemoved() local
54 mCache.putSnapshot(window.getTask(), createSnapshot()); in testAppRemoved()
55 assertNotNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */, in testAppRemoved()
57 mCache.onAppRemoved(window.mAppToken); in testAppRemoved()
58 assertNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */, in testAppRemoved()
64 final WindowState window = createWindow(null, FIRST_APPLICATION_WINDOW, "window"); in testAppDied() local
65 mCache.putSnapshot(window.getTask(), createSnapshot()); in testAppDied()
66 assertNotNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */, in testAppDied()
68 mCache.onAppDied(window.mAppToken); in testAppDied()
69 assertNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */, in testAppDied()
[all …]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dpvmp3_mdct_18.cpp133 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) in pvmp3_mdct_18() argument
199 vec[ i] = fxp_mac32_Q32(tmp, (vec[i+10]), window[ i]); in pvmp3_mdct_18()
209 vec[ 6] = fxp_mac32_Q32(tmp, vec[16] << 1, window[ i]); in pvmp3_mdct_18()
216 vec[ 7] = fxp_mac32_Q32(tmp, tmp4 << 1, window[ 7]); in pvmp3_mdct_18()
218 vec[ 8] = fxp_mac32_Q32(tmp1, vec[17] << 1, window[ 8]); in pvmp3_mdct_18()
223 vec[ 9] = fxp_mac32_Q32(tmp, vec[17] << 1, window[ 9]); in pvmp3_mdct_18()
225 vec[17] = fxp_mac32_Q32(tmp1, vec[10] << 1, window[17]); in pvmp3_mdct_18()
227 vec[16] = fxp_mac32_Q32(tmp2, vec[11] << 1, window[16]); in pvmp3_mdct_18()
231 vec[15] = fxp_mac32_Q32(tmp1, vec[12] << 1, window[15]); in pvmp3_mdct_18()
233 vec[14] = fxp_mac32_Q32(tmp2, vec[13] << 1, window[14]); in pvmp3_mdct_18()
[all …]
Dpvmp3_get_scale_factors.cpp140 int32 window; in pvmp3_get_scale_factors() local
154 for (window = 0; window < 3; window++) in pvmp3_get_scale_factors()
156 … scalefac->s[window][sfb] = getNbits(pMainData, slen[0][gr_info->scalefac_compress]); in pvmp3_get_scale_factors()
161 for (window = 0; window < 3; window++) in pvmp3_get_scale_factors()
163 … scalefac->s[window][sfb] = getNbits(pMainData, slen[1][gr_info->scalefac_compress]); in pvmp3_get_scale_factors()
173 for (window = 0; window < 3; window++) in pvmp3_get_scale_factors()
175 … scalefac->s[window][sfb] = getNbits(pMainData, slen[i][gr_info->scalefac_compress]); in pvmp3_get_scale_factors()
Dpvmp3_mpeg2_get_scale_factors.cpp129 int32 window; in pvmp3_mpeg2_get_scale_factors() local
156 for (window = 0; window < 3; window++) in pvmp3_mpeg2_get_scale_factors()
158 scalefac->s[window][sfb] = scalefac_buffer[k]; in pvmp3_mpeg2_get_scale_factors()
178 for (window = 0; window < 3; window++) in pvmp3_mpeg2_get_scale_factors()
180 scalefac->s[window][sfb] = scalefac_buffer[k]; in pvmp3_mpeg2_get_scale_factors()
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
DSystemBarHelperTest.java89 final Window window = createWindowWithSystemUiVisibility(0x456); in testAddVisibilityFlagWindow() local
90 SystemBarHelper.addVisibilityFlag(window, 0x1400); in testAddVisibilityFlagWindow()
94 "View visibility should be 0x1456", 0x1456, window.getAttributes().systemUiVisibility); in testAddVisibilityFlagWindow()
101 final Window window = createWindowWithSystemUiVisibility(0x456); in testRemoveVisibilityFlagWindow() local
102 SystemBarHelper.removeVisibilityFlag(window, 0x1400); in testRemoveVisibilityFlagWindow()
106 "View visibility should be 0x56", 0x56, window.getAttributes().systemUiVisibility); in testRemoveVisibilityFlagWindow()
113 final Window window = createWindowWithSystemUiVisibility(0x456); in testHideSystemBarsWindow() local
114 SystemBarHelper.hideSystemBars(window); in testHideSystemBarsWindow()
119 window.getAttributes().systemUiVisibility); in testHideSystemBarsWindow()
123 window.getDecorView().getSystemUiVisibility()); in testHideSystemBarsWindow()
[all …]
/frameworks/base/core/java/android/view/
DIWindowSession.aidl43 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs, in addToDisplay() argument
48 … int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs, in addToDisplayWithoutInputChannel() argument
52 void remove(IWindow window); in remove() argument
99 int relayout(IWindow window, int seq, in WindowManager.LayoutParams attrs, in relayout() argument
121 boolean outOfMemory(IWindow window); in outOfMemory() argument
129 void setTransparentRegion(IWindow window, in Region region); in setTransparentRegion() argument
141 void setInsets(IWindow window, int touchableInsets, in Rect contentInsets, in setInsets() argument
148 void getDisplayFrame(IWindow window, out Rect outDisplayFrame); in getDisplayFrame() argument
151 void finishDrawing(IWindow window); in finishDrawing() argument
178 IBinder performDrag(IWindow window, int flags, in SurfaceControl surface, int touchSource, in performDrag() argument
[all …]
DWindowInfo.java59 WindowInfo window = sPool.acquire(); in obtain() local
60 if (window == null) { in obtain()
61 window = new WindowInfo(); in obtain()
63 return window; in obtain()
67 WindowInfo window = obtain(); in obtain() local
68 window.type = other.type; in obtain()
69 window.layer = other.layer; in obtain()
70 window.token = other.token; in obtain()
71 window.parentToken = other.parentToken; in obtain()
72 window.activityToken = other.activityToken; in obtain()
[all …]
/frameworks/native/libs/nativewindow/include/vndk/
Dwindow.h43 int ANativeWindow_OemStorageSet(ANativeWindow* window, uint32_t slot, intptr_t value);
54 int ANativeWindow_OemStorageGet(ANativeWindow* window, uint32_t slot, intptr_t* value);
62 int ANativeWindow_setSwapInterval(ANativeWindow* window, int interval);
176 int ANativeWindow_query(const ANativeWindow* window, ANativeWindowQuery query, int* value);
177 int ANativeWindow_queryf(const ANativeWindow* window, ANativeWindowQuery query, float* value);
199 int ANativeWindow_dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd);
221 int ANativeWindow_queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd);
249 int ANativeWindow_cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd);
263 int ANativeWindow_setUsage(ANativeWindow* window, uint64_t usage);
269 int ANativeWindow_setBufferCount(ANativeWindow* window, size_t bufferCount);
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java154 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs, in addToDisplay() argument
159 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, outFrame, in addToDisplay()
165 …public int addToDisplayWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams att… in addToDisplayWithoutInputChannel() argument
168 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, in addToDisplayWithoutInputChannel()
175 public void remove(IWindow window) { in remove() argument
176 mService.removeWindow(this, window); in remove()
185 public int relayout(IWindow window, int seq, WindowManager.LayoutParams attrs, in relayout() argument
194 int res = mService.relayoutWindow(this, window, seq, attrs, in relayout()
206 public boolean outOfMemory(IWindow window) { in outOfMemory() argument
207 return mService.outOfMemoryWindow(this, window); in outOfMemory()
[all …]
DDragDropController.java86 void sendDragStartedIfNeededLocked(WindowState window) { in sendDragStartedIfNeededLocked() argument
87 mDragState.sendDragStartedIfNeededLocked(window); in sendDragStartedIfNeededLocked()
90 IBinder performDrag(SurfaceSession session, int callerPid, int callerUid, IWindow window, in performDrag() argument
94 Slog.d(TAG_WM, "perform drag: win=" + window + " surface=" + surface + " flags=" + in performDrag()
99 final boolean callbackResult = mCallback.get().prePerformDrag(window, dragToken, in performDrag()
115 null, window, false); in performDrag()
117 Slog.w(TAG_WM, "Bad requesting window " + window); in performDrag()
141 final IBinder winBinder = window.asBinder(); in performDrag()
198 void reportDropResult(IWindow window, boolean consumed) { in reportDropResult() argument
199 IBinder token = window.asBinder(); in reportDropResult()
[all …]
/frameworks/base/libs/hwui/renderthread/
DReliableSurface.cpp231 Surface* ReliableSurface::getWrapped(const ANativeWindow* window) { in getWrapped() argument
232 return getSelf(window)->mSurface.get(); in getWrapped()
235 int ReliableSurface::hook_setSwapInterval(ANativeWindow* window, int interval) { in hook_setSwapInterval() argument
236 return callProtected(getWrapped(window), setSwapInterval, interval); in hook_setSwapInterval()
239 int ReliableSurface::hook_dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, in hook_dequeueBuffer() argument
241 return getSelf(window)->dequeueBuffer(buffer, fenceFd); in hook_dequeueBuffer()
244 int ReliableSurface::hook_cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, in hook_cancelBuffer() argument
246 return getSelf(window)->cancelBuffer(buffer, fenceFd); in hook_cancelBuffer()
249 int ReliableSurface::hook_queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, in hook_queueBuffer() argument
251 return getSelf(window)->queueBuffer(buffer, fenceFd); in hook_queueBuffer()
[all …]
DReliableSurface.h72 static int hook_cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd);
73 static int hook_dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer,
75 static int hook_queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd);
77 static int hook_perform(ANativeWindow* window, int operation, ...);
78 static int hook_query(const ANativeWindow* window, int what, int* value);
79 static int hook_setSwapInterval(ANativeWindow* window, int interval);
81 static int hook_cancelBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer* buffer);
82 static int hook_dequeueBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer** buffer);
83 static int hook_lockBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer* buffer);
84 static int hook_queueBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer* buffer);
/frameworks/native/libs/nativewindow/include/android/
Dnative_window.h118 void ANativeWindow_acquire(ANativeWindow* window);
123 void ANativeWindow_release(ANativeWindow* window);
130 int32_t ANativeWindow_getWidth(ANativeWindow* window);
137 int32_t ANativeWindow_getHeight(ANativeWindow* window);
144 int32_t ANativeWindow_getFormat(ANativeWindow* window);
163 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window,
176 int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
185 int32_t ANativeWindow_unlockAndPost(ANativeWindow* window);
197 int32_t ANativeWindow_setBuffersTransform(ANativeWindow* window, int32_t transform) __INTRODUCED_IN…
219 int32_t ANativeWindow_setBuffersDataSpace(ANativeWindow* window, int32_t dataSpace) __INTRODUCED_IN…
[all …]
/frameworks/av/camera/ndk/
DNdkCameraDevice.cpp134 ACameraWindowType* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionOutput_create() argument
136 if (window == nullptr || out == nullptr) { in ACaptureSessionOutput_create()
138 __FUNCTION__, window, out); in ACaptureSessionOutput_create()
141 *out = new ACaptureSessionOutput(window, false); in ACaptureSessionOutput_create()
147 ACameraWindowType* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionSharedOutput_create() argument
149 if (window == nullptr || out == nullptr) { in ACaptureSessionSharedOutput_create()
151 __FUNCTION__, window, out); in ACaptureSessionSharedOutput_create()
154 *out = new ACaptureSessionOutput(window, true); in ACaptureSessionSharedOutput_create()
160 ACameraWindowType* window, const char* physicalId, in ACaptureSessionPhysicalOutput_create() argument
163 if (window == nullptr || physicalId == nullptr || out == nullptr) { in ACaptureSessionPhysicalOutput_create()
[all …]
/frameworks/base/core/java/android/database/
DCursorToBulkCursorAdaptor.java146 d.window = mCursor.getWindow(); in getBulkCursorDescriptor()
147 if (d.window != null) { in getBulkCursorDescriptor()
150 d.window.acquireReference(); in getBulkCursorDescriptor()
166 CursorWindow window = mCursor.getWindow(); in getWindow() local
167 if (window != null) { in getWindow()
170 window = mFilledWindow; in getWindow()
171 if (window == null) { in getWindow()
173 window = mFilledWindow; in getWindow()
174 } else if (position < window.getStartPosition() in getWindow()
175 || position >= window.getStartPosition() + window.getNumRows()) { in getWindow()
[all …]
/frameworks/native/vulkan/libvulkan/
Dswapchain.cpp207 android::sp<ANativeWindow> window; member
238 ANativeWindow* window = surface.window.get(); in Swapchain() local
240 window, in Swapchain()
245 ANativeWindow* window = surface.window.get(); in get_refresh_duration() local
247 window, in get_refresh_duration()
285 ANativeWindow* window, in ReleaseSwapchainImage() argument
313 if (window) { in ReleaseSwapchainImage()
314 window->cancelBuffer(window, image.buffer.get(), release_fence); in ReleaseSwapchainImage()
368 swapchain.surface.window.get(), ti.native_frame_id_, in get_num_ready_timings()
533 surface->window = pCreateInfo->window; in CreateAndroidSurfaceKHR()
[all …]
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityCache.java95 final AccessibilityWindowInfo window = windows.get(i); in setWindows() local
96 addWindow(window); in setWindows()
102 public void addWindow(AccessibilityWindowInfo window) { in addWindow() argument
105 Log.i(LOG_TAG, "Caching window: " + window.getId()); in addWindow()
107 final int windowId = window.getId(); in addWindow()
108 mWindowCache.put(windowId, new AccessibilityWindowInfo(window)); in addWindow()
246 AccessibilityWindowInfo window = mWindowCache.valueAt(i); in getWindows() local
247 sortedWindows.put(window.getLayer(), window); in getWindows() local
255 AccessibilityWindowInfo window = sortedWindows.valueAt(i); in getWindows() local
256 windows.add(new AccessibilityWindowInfo(window)); in getWindows()
[all …]

12345678910