Searched defs:windowToken (Results 1 - 19 of 19) sorted by relevance

/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/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuDialogHelper.java50 * @param windowToken Optional token to assign to the window.
52 public void show(IBinder windowToken) { argument
85 if (windowToken != null) {
86 lp.token = windowToken;
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java156 * @param windowToken The window's token.
163 IBinder windowToken);
162 getCompatibleMagnificationSpecForWindow( IBinder windowToken) argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java264 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
269 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeIInputMethodManager.java229 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
H A DBridgeWindowSession.java177 public void setWallpaperDisplayOffset(IBinder windowToken, int x, int y) { argument
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java373 public void init(int connectionId, IBinder windowToken); argument
662 public void init(int connectionId, IBinder windowToken) {
664 mWindowToken = windowToken;
669 wm.setDefaultToken(windowToken);
712 IBinder windowToken) {
714 connection, windowToken);
770 IBinder windowToken = (IBinder) args.arg2;
775 mCallback.init(mConnectionId, windowToken);
711 init(IAccessibilityServiceConnection connection, int connectionId, IBinder windowToken) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java568 * @param windowToken The window token to which a connection is added.
573 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
585 return service.addAccessibilityInteractionConnection(windowToken, connection, userId);
594 * @param windowToken The window token to which a connection is removed.
598 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
607 service.removeAccessibilityInteractionConnection(windowToken);
/frameworks/base/media/java/android/media/tv/
H A DITvInputSessionWrapper.java255 public void createOverlayView(IBinder windowToken, Rect frame) { argument
256 mCaller.executeOrSendMessage(mCaller.obtainMessageOO(DO_CREATE_OVERLAY_VIEW, windowToken,
H A DTvInputService.java1171 * @param windowToken A window token of the application.
1174 void createOverlayView(IBinder windowToken, Rect frame) { argument
1179 mWindowToken = windowToken;
1216 mWindowParams.token = windowToken;
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java73 public void onShown(IBinder windowToken) throws RemoteException { argument
74 Log.v(TAG, "Keyguard is shown, windowToken = " + windowToken);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java1003 public void setDisplayOffset(IBinder windowToken, int x, int y) { argument
1007 windowToken, x, y);
1062 * @param windowToken The window who these offsets should be associated
1068 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { argument
1072 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
1095 * @param windowToken The window who these offsets should be associated
1105 public void sendWallpaperCommand(IBinder windowToken, String action, argument
1110 windowToken, action, x, y, z, extras, false);
1140 * @param windowToken The window who these offsets should be associated
1144 public void clearWallpaperOffsets(IBinder windowToken) { argument
[all...]
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java943 * @param windowToken A window token that will allow a window to be created in the correct layer.
945 private final void attach(IBinder windowToken, boolean canDoze) { argument
953 mSandman.finishSelf(windowToken, true /*immediate*/);
960 mWindowToken = windowToken;
973 windowToken, WindowManager.LayoutParams.TYPE_DREAM));
977 lp.token = windowToken;
991 mWindow.setWindowManager(null, windowToken, "dream", true);
1094 public void attach(final IBinder windowToken, final boolean canDoze) { argument
1098 DreamService.this.attach(windowToken, canDoze);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java1088 IWallpaperConnection conn, IBinder windowToken,
1092 mWindowToken = windowToken;
1239 public void attach(IWallpaperConnection conn, IBinder windowToken, argument
1241 new IWallpaperEngineWrapper(mTarget, conn, windowToken,
1087 IWallpaperEngineWrapper(WallpaperService context, IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java1015 * @param windowToken The token of the window that is making the request,
1020 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { argument
1021 return hideSoftInputFromWindow(windowToken, flags, null);
1030 * @param windowToken The token of the window that is making the request,
1040 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, argument
1044 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
1061 * @param windowToken The token of the window that is making the request,
1070 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { argument
1072 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1315 public void createOverlayView(IBinder sessionToken, IBinder windowToken, Rect frame, argument
1325 .createOverlayView(windowToken, frame);
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java2185 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
2228 if (mCurFocusedWindow == windowToken) {
2230 + " attribute=" + attribute + ", token = " + windowToken);
2237 mCurFocusedWindow = windowToken;
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java531 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
548 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
551 + " with windowId: " + windowId + " and token: " + windowToken.asBinder());
559 userState.mWindowTokens.put(windowId, windowToken.asBinder());
563 + " and token: " + windowToken.asBinder());
606 private int removeAccessibilityInteractionConnectionInternalLocked(IBinder windowToken, argument
611 if (windowTokens.valueAt(i) == windowToken) {
1654 IBinder windowToken = mGlobalWindowTokens.get(windowId);
1655 if (windowToken == null) {
1656 windowToken
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java11876 public MagnificationSpec getCompatibleMagnificationSpecForWindow(IBinder windowToken) { argument
11878 WindowState windowState = mWindowMap.get(windowToken);

Completed in 644 milliseconds