Home
last modified time | relevance | path

Searched refs:mLocalInsetsSources (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowContainer.java169 SparseArray<InsetsSource> mLocalInsetsSources = null; field in WindowContainer
458 if (mLocalInsetsSources == null) { in addLocalInsetsFrameProvider()
459 mLocalInsetsSources = new SparseArray<>(); in addLocalInsetsFrameProvider()
461 if (mLocalInsetsSources.get(id) != null) { in addLocalInsetsFrameProvider()
469 mLocalInsetsSources.put(id, source); in addLocalInsetsFrameProvider()
534 if (mLocalInsetsSources == null) { in removeLocalInsetsSource()
537 if (mLocalInsetsSources.removeReturnOld(id) == null) { in removeLocalInsetsSource()
1080 if (dc != this && mLocalInsetsSources != null) { in onDisplayChanged()
1081 mLocalInsetsSources.clear(); in onDisplayChanged()
3630 if (mLocalInsetsSources != null && mLocalInsetsSources.size() != 0) { in dump()
[all …]
H A DWindowState.java4537 createMergedSparseArray(localInsetsSourcesFromParent, mLocalInsetsSources); in updateAboveInsetsState()
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DWindowOrganizerTests.java804 assertThat(navigationBarInsetsReceiverTask.mLocalInsetsSources in testAddInsetsSource()
834 assertThat(navigationBarInsetsReceiverTask.mLocalInsetsSources.size()).isEqualTo(0); in testRemoveInsetsSource()
H A DWindowContainerTests.java1665 if (container.mLocalInsetsSources == null) { in hasLocalSource()
1668 return container.mLocalInsetsSources.contains(sourceId); in hasLocalSource()