Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/view/
H A DWindowManagerImpl.java98 private final IBinder mWindowContextToken; field in WindowManagerImpl
108 mWindowContextToken = windowContextToken; in WindowManagerImpl()
112 return new WindowManagerImpl(mContext, parentWindow, mWindowContextToken); in createLocalWindowManager()
116 return new WindowManagerImpl(displayContext, mParentWindow, mWindowContextToken); in createPresentationWindowManager()
158 wparams.mWindowContextToken = mWindowContextToken; in applyTokens()
H A DWindowManager.java3056 public IBinder mWindowContextToken = null; field in WindowManager.LayoutParams
3849 mWindowContextToken = token; in setWindowContextToken()
3868 return mWindowContextToken; in getWindowContextToken()
3896 out.writeStrongBinder(mWindowContextToken); in writeToParcel()
3977 mWindowContextToken = in.readStrongBinder(); in LayoutParams()
4153 if (mWindowContextToken == null) { in copyFrom()
4156 mWindowContextToken = o.mWindowContextToken; in copyFrom()
/aosp12/frameworks/base/core/tests/coretests/src/android/window/
H A DWindowContextTest.java93 assertEquals(mWindowContext.getWindowContextToken(), params.mWindowContextToken); in testCreateWindowContextWindowManagerAttachClientToken()
130 assertEquals(token, params.mWindowContextToken); in testCreateWindowContextNewTokenFromClient()
170 assertEquals(token, params.mWindowContextToken); in testCreateWindowContext_AttachActivity_TokenNotRemovedAfterRelease()
205 assertEquals(token, params.mWindowContextToken); in testCreateWindowContext_AttachWindowToken_TokenNotRemovedAfterRelease()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java1556 final IBinder windowContextToken = attrs.mWindowContextToken; in addWindow()