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

12

/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardShowCallback.aidl19 void onShown(IBinder windowToken);
/frameworks/base/core/java/android/service/dreams/
H A DIDreamService.aidl23 void attach(IBinder windowToken, boolean canDoze);
H A DDreamService.java925 * @param windowToken A window token that will allow a window to be created in the correct layer.
927 private final void attach(IBinder windowToken, boolean canDoze) { argument
935 mSandman.finishSelf(windowToken, true /*immediate*/);
942 mWindowToken = windowToken;
955 windowToken, WindowManager.LayoutParams.TYPE_DREAM));
959 lp.token = windowToken;
973 mWindow.setWindowManager(null, windowToken, "dream", true);
1076 public void attach(final IBinder windowToken, final boolean canDoze) { argument
1080 DreamService.this.attach(windowToken, canDoze);
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperService.aidl27 IBinder windowToken, int windowType, boolean isPreview,
H A DWallpaperService.java1082 IWallpaperConnection conn, IBinder windowToken,
1086 mWindowToken = windowToken;
1232 public void attach(IWallpaperConnection conn, IBinder windowToken, argument
1234 new IWallpaperEngineWrapper(mTarget, conn, windowToken,
1081 IWallpaperEngineWrapper(WallpaperService context, IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) argument
/frameworks/base/core/java/android/view/accessibility/
H A DIAccessibilityManager.aidl48 int addAccessibilityInteractionConnection(IWindow windowToken,
51 void removeAccessibilityInteractionConnection(IWindow windowToken);
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/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java265 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
270 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java121 * @param windowToken The window's token.
128 IBinder windowToken);
127 getCompatibleMagnificationSpecForWindow( IBinder windowToken) argument
H A DIWindowSession.aidl176 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
183 void setWallpaperDisplayOffset(IBinder windowToken, int x, int y);
/frameworks/base/media/java/android/media/tv/
H A DITvInputSession.aidl44 void createOverlayView(in IBinder windowToken, in Rect frame);
H A DITvInputManager.aidl69 void createOverlayView(in IBinder sessionToken, in IBinder windowToken, in Rect frame,
H A DITvInputSessionWrapper.java215 public void createOverlayView(IBinder windowToken, Rect frame) { argument
216 mCaller.executeOrSendMessage(mCaller.obtainMessageOO(DO_CREATE_OVERLAY_VIEW, windowToken,
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DFaceUnlock.java262 IBinder windowToken = mFaceUnlockView.getWindowToken();
263 if (windowToken != null) {
272 startUi(windowToken, position[0], position[1], mFaceUnlockView.getWidth(),
275 Log.e(TAG, "windowToken is null in handleServiceConnected()");
375 private void startUi(IBinder windowToken, int x, int y, int w, int h) { argument
381 mService.startUi(windowToken, x, y, w, h,
/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
87 if (windowToken != null) {
88 lp.token = windowToken;
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java985 public void setDisplayOffset(IBinder windowToken, int x, int y) { argument
989 windowToken, x, y);
1003 * @param windowToken The window who these offsets should be associated
1009 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { argument
1013 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
1036 * @param windowToken The window who these offsets should be associated
1046 public void sendWallpaperCommand(IBinder windowToken, String action, argument
1051 windowToken, action, x, y, z, extras, false);
1064 * @param windowToken The window who these offsets should be associated
1068 public void clearWallpaperOffsets(IBinder windowToken) { argument
[all...]
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/matcher/
H A DRootMatchers.java120 IBinder windowToken = root.getDecorView().getWindowToken();
122 if (windowToken == appToken) {
123 // windowToken == appToken means this window isn't contained by any other windows.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowView.java109 IBinder windowToken = getWindowToken();
111 lp.token = windowToken;
113 WindowManagerGlobal.getInstance().changeCanvasOpacity(windowToken, true);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java66 public void onShown(IBinder windowToken); argument
78 public void onShown(IBinder windowToken) throws RemoteException { argument
81 mShowListener.onShown(windowToken);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodManager.aidl58 InputBindResult windowGainedFocus(in IInputMethodClient client, in IBinder windowToken,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeIInputMethodManager.java228 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
H A DBridgeWindowSession.java177 public void setWallpaperDisplayOffset(IBinder windowToken, int x, int y) { argument
/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/view/inputmethod/
H A DInputMethodManager.java1022 * @param windowToken The token of the window that is making the request,
1027 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { argument
1028 return hideSoftInputFromWindow(windowToken, flags, null);
1037 * @param windowToken The token of the window that is making the request,
1047 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, argument
1051 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
1068 * @param windowToken The token of the window that is making the request,
1077 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { argument
1079 if (mServedView == null || mServedView.getWindowToken() != windowToken) {

Completed in 523 milliseconds

12