Searched refs:windowToken (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/core/java/android/service/dreams/
H A DIDreamService.aidl23 void attach(IBinder windowToken);
H A DDreamService.java601 * @param windowToken A window token that will allow a window to be created in the correct layer.
603 private final void attach(IBinder windowToken) { argument
614 mWindowToken = windowToken;
622 windowToken, WindowManager.LayoutParams.TYPE_DREAM));
626 lp.token = windowToken;
640 mWindow.setWindowManager(null, windowToken, "dream", true);
752 public void attach(final IBinder windowToken) { argument
756 DreamService.this.attach(windowToken);
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperService.aidl26 IBinder windowToken, int windowType, boolean isPreview,
H A DWallpaperService.java962 IWallpaperConnection conn, IBinder windowToken,
972 mWindowToken = windowToken;
1108 public void attach(IWallpaperConnection conn, IBinder windowToken, argument
1110 new IWallpaperEngineWrapper(mTarget, conn, windowToken,
961 IWallpaperEngineWrapper(WallpaperService context, IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight) argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java129 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
134 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
/frameworks/base/core/java/android/view/accessibility/
H A DIAccessibilityManager.aidl48 int addAccessibilityInteractionConnection(IWindow windowToken,
51 void removeAccessibilityInteractionConnection(IWindow windowToken);
H A DAccessibilityManager.java420 * @param windowToken The window token to which a connection is added.
425 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
428 return mService.addAccessibilityInteractionConnection(windowToken, connection, mUserId);
437 * @param windowToken The window token to which a connection is removed.
441 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
443 mService.removeAccessibilityInteractionConnection(windowToken);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DFaceUnlock.java263 IBinder windowToken = mFaceUnlockView.getWindowToken();
264 if (windowToken != null) {
273 startUi(windowToken, position[0], position[1], mFaceUnlockView.getWidth(),
276 Log.e(TAG, "windowToken is null in handleServiceConnected()");
369 private void startUi(IBinder windowToken, int x, int y, int w, int h) { argument
375 mService.startUi(windowToken, x, y, w, h,
H A DKeyguardViewManager.java73 void onShown(IBinder windowToken); argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuDialogHelper.java49 * @param windowToken Optional token to assign to the window.
51 public void show(IBinder windowToken) { argument
84 if (windowToken != null) {
85 lp.token = windowToken;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DFaceUnlock.java326 IBinder windowToken = mFaceUnlockView.getWindowToken();
327 if (windowToken != null) {
336 startUi(windowToken, position[0], position[1], mFaceUnlockView.getWidth(),
339 Log.e(TAG, "windowToken is null in handleServiceConnected()");
456 private void startUi(IBinder windowToken, int x, int y, int w, int h) { argument
462 mService.startUi(windowToken, x, y, w, h,
H A DKeyguardViewManager.java64 void onShown(IBinder windowToken); argument
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java703 * @param windowToken The window who these offsets should be associated
709 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { argument
713 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
736 * @param windowToken The window who these offsets should be associated
746 public void sendWallpaperCommand(IBinder windowToken, String action, argument
751 windowToken, action, x, y, z, extras, false);
764 * @param windowToken The window who these offsets should be associated
768 public void clearWallpaperOffsets(IBinder windowToken) { argument
771 windowToken, -1, -1, -1, -1);
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl172 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
H A DIWindowManager.aidl226 float getWindowCompatibilityScale(IBinder windowToken);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodManager.aidl54 InputBindResult windowGainedFocus(in IInputMethodClient client, in IBinder windowToken,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeIInputMethodManager.java212 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java948 * @param windowToken The token of the window that is making the request,
953 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { argument
954 return hideSoftInputFromWindow(windowToken, flags, null);
963 * @param windowToken The token of the window that is making the request,
973 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, argument
977 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
994 * @param windowToken The token of the window that is making the request,
1003 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { argument
1005 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java423 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
437 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
448 userState.mWindowTokens.put(windowId, windowToken.asBinder());
493 private int removeAccessibilityInteractionConnectionInternalLocked(IBinder windowToken, argument
498 if (windowTokens.valueAt(i) == windowToken) {
2120 IBinder windowToken = mGlobalWindowTokens.get(windowId);
2121 if (windowToken != null) {
2122 return mWindowManagerService.getWindowCompatibilityScale(windowToken);
2124 windowToken = getCurrentUserStateLocked().mWindowTokens.get(windowId);
2125 if (windowToken !
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java467 public float getWindowCompatibilityScale(IBinder windowToken) throws RemoteException { argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java3802 public void onShown(IBinder windowToken) {
3803 waitForKeyguardWindowDrawn(windowToken, screenOnListener);
3816 private void waitForKeyguardWindowDrawn(IBinder windowToken, argument
3818 if (windowToken != null) {
3821 windowToken, new IRemoteCallback.Stub() {
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1814 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
1849 if (mCurFocusedWindow == windowToken) {
1851 + " attribute=" + attribute + ", token = " + windowToken);
1858 mCurFocusedWindow = windowToken;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3079 public float getWindowCompatibilityScale(IBinder windowToken) { argument
3085 WindowState windowState = mWindowMap.get(windowToken);

Completed in 254 milliseconds