Home
last modified time | relevance | path

Searched refs:windowToken (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/core/java/android/service/dreams/
DDreamService.java946 private final void attach(IBinder windowToken, boolean canDoze) { in attach() argument
954 mSandman.finishSelf(windowToken, true /*immediate*/); in attach()
961 mWindowToken = windowToken; in attach()
974 windowToken, WindowManager.LayoutParams.TYPE_DREAM)); in attach()
978 lp.token = windowToken; in attach()
992 mWindow.setWindowManager(null, windowToken, "dream", true); in attach()
1095 public void attach(final IBinder windowToken, final boolean canDoze) { in attach() argument
1099 DreamService.this.attach(windowToken, canDoze); in attach()
DIDreamService.aidl23 void attach(IBinder windowToken, boolean canDoze); in attach() argument
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
DMenuDialogHelper.java50 public void show(IBinder windowToken) { in show() argument
83 if (windowToken != null) { in show()
84 lp.token = windowToken; in show()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuDialogHelper.java48 public void show(IBinder windowToken) { in show() argument
81 if (windowToken != null) { in show()
82 lp.token = windowToken; in show()
/frameworks/base/core/java/android/view/accessibility/
DIAccessibilityManager.aidl48 int addAccessibilityInteractionConnection(IWindow windowToken, in addAccessibilityInteractionConnection() argument
51 void removeAccessibilityInteractionConnection(IWindow windowToken); in removeAccessibilityInteractionConnection() argument
DAccessibilityManager.java572 public int addAccessibilityInteractionConnection(IWindow windowToken, in addAccessibilityInteractionConnection() argument
584 return service.addAccessibilityInteractionConnection(windowToken, connection, userId); in addAccessibilityInteractionConnection()
597 public void removeAccessibilityInteractionConnection(IWindow windowToken) { in removeAccessibilityInteractionConnection() argument
606 service.removeAccessibilityInteractionConnection(windowToken); in removeAccessibilityInteractionConnection()
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
DAccessibilityManager.java264 public int addAccessibilityInteractionConnection(IWindow windowToken, in addAccessibilityInteractionConnection() argument
269 public void removeAccessibilityInteractionConnection(IWindow windowToken) { in removeAccessibilityInteractionConnection() argument
/frameworks/base/core/java/android/accessibilityservice/
DAccessibilityService.java370 public void init(int connectionId, IBinder windowToken); in init() argument
1453 public void init(int connectionId, IBinder windowToken) { in onBind() argument
1455 mWindowToken = windowToken; in onBind()
1460 wm.setDefaultToken(windowToken); in onBind()
1522 IBinder windowToken) {
1524 connection, windowToken);
1604 IBinder windowToken = (IBinder) args.arg2;
1609 mCallback.init(mConnectionId, windowToken);
DIAccessibilityServiceClient.aidl32 void init(in IAccessibilityServiceConnection connection, int connectionId, IBinder windowToken); in init() argument
/frameworks/base/core/java/android/service/wallpaper/
DIWallpaperService.aidl27 IBinder windowToken, int windowType, boolean isPreview, in attach() argument
DWallpaperService.java1090 IWallpaperConnection conn, IBinder windowToken, in IWallpaperEngineWrapper() argument
1094 mWindowToken = windowToken; in IWallpaperEngineWrapper()
1241 public void attach(IWallpaperConnection conn, IBinder windowToken, in attach() argument
1243 new IWallpaperEngineWrapper(mTarget, conn, windowToken, in attach()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl222 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep); in setWallpaperPosition() argument
229 void setWallpaperDisplayOffset(IBinder windowToken, int x, int y); in setWallpaperDisplayOffset() argument
DWindowManagerInternal.java179 IBinder windowToken); in getCompatibleMagnificationSpecForWindow() argument
/frameworks/base/core/java/android/app/
DWallpaperManager.java1352 public void setDisplayOffset(IBinder windowToken, int x, int y) { in setDisplayOffset() argument
1356 windowToken, x, y); in setDisplayOffset()
1427 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { in setWallpaperOffsets() argument
1431 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep); in setWallpaperOffsets()
1464 public void sendWallpaperCommand(IBinder windowToken, String action, in sendWallpaperCommand() argument
1469 windowToken, action, x, y, z, extras, false); in sendWallpaperCommand()
1524 public void clearWallpaperOffsets(IBinder windowToken) { in clearWallpaperOffsets() argument
1527 windowToken, -1, -1, -1, -1); in clearWallpaperOffsets()
/frameworks/base/media/java/android/media/tv/
DITvInputSession.aidl45 void createOverlayView(in IBinder windowToken, in Rect frame); in createOverlayView() argument
DITvInputSessionWrapper.java300 public void createOverlayView(IBinder windowToken, Rect frame) { in createOverlayView() argument
301 mCaller.executeOrSendMessage(mCaller.obtainMessageOO(DO_CREATE_OVERLAY_VIEW, windowToken, in createOverlayView()
DITvInputManager.aidl75 void createOverlayView(in IBinder sessionToken, in IBinder windowToken, in Rect frame, in createOverlayView() argument
DTvInputService.java1226 void createOverlayView(IBinder windowToken, Rect frame) {
1231 mWindowToken = windowToken;
1268 mWindowParams.token = windowToken;
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
DKeyguardTestActivity.java73 public void onShown(IBinder windowToken) throws RemoteException { in onShown() argument
74 Log.v(TAG, "Keyguard is shown, windowToken = " + windowToken); in onShown()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarWindowView.java175 IBinder windowToken = getWindowToken(); in onAttachedToWindow() local
177 lp.token = windowToken; in onAttachedToWindow()
179 WindowManagerGlobal.getInstance().changeCanvasOpacity(windowToken, true); in onAttachedToWindow()
/frameworks/base/core/java/com/android/internal/view/
DIInputMethodManager.aidl58 in IInputMethodClient client, in IBinder windowToken, int controlFlags, in startInputOrWindowGainedFocus() argument
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java1025 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { in hideSoftInputFromWindow() argument
1026 return hideSoftInputFromWindow(windowToken, flags, null); in hideSoftInputFromWindow()
1055 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, in hideSoftInputFromWindow() argument
1059 if (mServedView == null || mServedView.getWindowToken() != windowToken) { in hideSoftInputFromWindow()
1085 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { in toggleSoftInputFromWindow() argument
1087 if (mServedView == null || mServedView.getWindowToken() != windowToken) { in toggleSoftInputFromWindow()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeIInputMethodManager.java229 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode, in startInputOrWindowGainedFocus() argument
DBridgeWindowSession.java197 public void setWallpaperDisplayOffset(IBinder windowToken, int x, int y) { in setWallpaperDisplayOffset() argument
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java540 public int addAccessibilityInteractionConnection(IWindow windowToken, in addAccessibilityInteractionConnection() argument
557 mGlobalWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
560 … + " with windowId: " + windowId + " and token: " + windowToken.asBinder()); in addAccessibilityInteractionConnection()
568 userState.mWindowTokens.put(windowId, windowToken.asBinder()); in addAccessibilityInteractionConnection()
572 + " and token: " + windowToken.asBinder()); in addAccessibilityInteractionConnection()
615 private int removeAccessibilityInteractionConnectionInternalLocked(IBinder windowToken, in removeAccessibilityInteractionConnectionInternalLocked() argument
620 if (windowTokens.valueAt(i) == windowToken) { in removeAccessibilityInteractionConnectionInternalLocked()
1812 IBinder windowToken = mGlobalWindowTokens.get(windowId); in getCompatibleMagnificationSpecLocked() local
1813 if (windowToken == null) { in getCompatibleMagnificationSpecLocked()
1814 windowToken = getCurrentUserStateLocked().mWindowTokens.get(windowId); in getCompatibleMagnificationSpecLocked()
[all …]

12