Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DWindowManagerImpl.java109 private final IBinder mWindowContextToken; field in WindowManagerImpl
127 mWindowContextToken = windowContextToken; in WindowManagerImpl()
132 return new WindowManagerImpl(mContext, parentWindow, mWindowContextToken); in createLocalWindowManager()
136 return new WindowManagerImpl(displayContext, mParentWindow, mWindowContextToken); in createPresentationWindowManager()
178 wparams.mWindowContextToken = mWindowContextToken; in applyTokens()
DWindowManager.java4024 public IBinder mWindowContextToken = null; field in WindowManager.LayoutParams
5082 mWindowContextToken = token; in setWindowContextToken()
5101 return mWindowContextToken; in getWindowContextToken()
5129 out.writeStrongBinder(mWindowContextToken); in writeToParcel()
5206 mWindowContextToken = in.readStrongBinder(); in LayoutParams()
5382 if (mWindowContextToken == null) { in copyFrom()
5385 mWindowContextToken = o.mWindowContextToken; in copyFrom()
/frameworks/base/core/tests/coretests/src/android/window/
DWindowContextTest.java105 assertEquals(mWindowContext.getWindowContextToken(), params.mWindowContextToken); in testCreateWindowContextWindowManagerAttachClientToken()
142 assertEquals(token, params.mWindowContextToken); in testCreateWindowContextNewTokenFromClient()
182 assertEquals(token, params.mWindowContextToken); in testCreateWindowContext_AttachActivity_TokenNotRemovedAfterRelease()
217 assertEquals(token, params.mWindowContextToken); in testCreateWindowContext_AttachWindowToken_TokenNotRemovedAfterRelease()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java1634 final IBinder windowContextToken = attrs.mWindowContextToken; in addWindow()