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

/frameworks/base/core/java/android/service/dreams/
H A DIDreamService.aidl23 void attach(IBinder windowToken);
H A DDreamService.java602 * @param windowToken A window token that will allow a window to be created in the correct layer.
604 private final void attach(IBinder windowToken) { argument
615 mWindowToken = windowToken;
623 windowToken, WindowManager.LayoutParams.TYPE_DREAM));
627 lp.token = windowToken;
641 mWindow.setWindowManager(null, windowToken, "dream", true);
753 public void attach(final IBinder windowToken) { argument
757 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,
966 mWindowToken = windowToken;
1103 public void attach(IWallpaperConnection conn, IBinder windowToken, argument
1105 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.java264 IBinder windowToken = mFaceUnlockView.getWindowToken();
265 if (windowToken != null) {
274 startUi(windowToken, position[0], position[1], mFaceUnlockView.getWidth(),
277 Log.e(TAG, "windowToken is null in handleServiceConnected()");
377 private void startUi(IBinder windowToken, int x, int y, int w, int h) { argument
383 mService.startUi(windowToken, x, y, w, h,
H A DKeyguardViewManager.java75 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/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.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.aidl176 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
H A DIWindowManager.aidl284 * @param windowToken The unique window token.
287 MagnificationSpec getCompatibleMagnificationSpecForWindow(in 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.java961 * @param windowToken The token of the window that is making the request,
966 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { argument
967 return hideSoftInputFromWindow(windowToken, flags, null);
976 * @param windowToken The token of the window that is making the request,
986 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, argument
990 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
1007 * @param windowToken The token of the window that is making the request,
1016 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { argument
1018 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java481 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
495 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
506 userState.mWindowTokens.put(windowId, windowToken.asBinder());
551 private int removeAccessibilityInteractionConnectionInternalLocked(IBinder windowToken, argument
556 if (windowTokens.valueAt(i) == windowToken) {
2490 IBinder windowToken = mGlobalWindowTokens.get(windowId);
2491 if (windowToken == null) {
2492 windowToken = getCurrentUserStateLocked().mWindowTokens.get(windowId);
2494 if (windowToken != null) {
2496 windowToken);
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java517 public MagnificationSpec getCompatibleMagnificationSpecForWindow(IBinder windowToken) { argument
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1856 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
1899 if (mCurFocusedWindow == windowToken) {
1901 + " attribute=" + attribute + ", token = " + windowToken);
1908 mCurFocusedWindow = windowToken;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java4114 public void onShown(IBinder windowToken) {
4115 waitForKeyguardWindowDrawn(windowToken, screenOnListener);
4128 private void waitForKeyguardWindowDrawn(IBinder windowToken, argument
4130 if (windowToken != null) {
4133 windowToken, new IRemoteCallback.Stub() {
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3080 public MagnificationSpec getCompatibleMagnificationSpecForWindow(IBinder windowToken) { argument
3086 WindowState windowState = mWindowMap.get(windowToken);

Completed in 857 milliseconds