Searched defs:windowToken (Results 1 - 18 of 18) 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/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/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/view/accessibility/
H A DAccessibilityManager.java462 * @param windowToken The window token to which a connection is added.
467 public int addAccessibilityInteractionConnection(IWindow windowToken, argument
470 return mService.addAccessibilityInteractionConnection(windowToken, connection, mUserId);
479 * @param windowToken The window token to which a connection is removed.
483 public void removeAccessibilityInteractionConnection(IWindow windowToken) { argument
485 mService.removeAccessibilityInteractionConnection(windowToken);
/frameworks/base/packages/Keyguard/src/com/android/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.java93 void onShown(IBinder windowToken); argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeIInputMethodManager.java218 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, 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/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java59 public void onShown(IBinder windowToken); argument
71 public void onShown(IBinder windowToken) throws RemoteException { argument
74 mShowListener.onShown(windowToken);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java944 * @param windowToken The window who these offsets should be associated
950 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { argument
954 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
977 * @param windowToken The window who these offsets should be associated
987 public void sendWallpaperCommand(IBinder windowToken, String action, argument
992 windowToken, action, x, y, z, extras, false);
1005 * @param windowToken The window who these offsets should be associated
1009 public void clearWallpaperOffsets(IBinder windowToken) { argument
1012 windowToken, -1, -1, -1, -1);
/frameworks/base/core/java/android/service/dreams/
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 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/
H A DIWindowManagerImpl.java487 public MagnificationSpec getCompatibleMagnificationSpecForWindow(IBinder windowToken) { argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java962 * @param windowToken The token of the window that is making the request,
967 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { argument
968 return hideSoftInputFromWindow(windowToken, flags, null);
977 * @param windowToken The token of the window that is making the request,
987 public boolean hideSoftInputFromWindow(IBinder windowToken, int flags, argument
991 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
1008 * @param windowToken The token of the window that is making the request,
1017 public void toggleSoftInputFromWindow(IBinder windowToken, int showFlags, int hideFlags) { argument
1019 if (mServedView == null || mServedView.getWindowToken() != windowToken) {
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1864 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, argument
1907 if (mCurFocusedWindow == windowToken) {
1909 + " attribute=" + attribute + ", token = " + windowToken);
1916 mCurFocusedWindow = 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) {
2495 IBinder windowToken = mGlobalWindowTokens.get(windowId);
2496 if (windowToken == null) {
2497 windowToken = getCurrentUserStateLocked().mWindowTokens.get(windowId);
2499 if (windowToken != null) {
2501 windowToken);
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java4280 public void onShown(IBinder windowToken) {
4281 waitForKeyguardWindowDrawn(windowToken, screenOnListener);
4294 private void waitForKeyguardWindowDrawn(IBinder windowToken, argument
4296 if (windowToken != null && !mHideLockScreen) {
4299 windowToken, new IRemoteCallback.Stub() {
4315 Slog.i(TAG, "No lock screen! windowToken=" + windowToken);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3135 public MagnificationSpec getCompatibleMagnificationSpecForWindow(IBinder windowToken) { argument
3141 WindowState windowState = mWindowMap.get(windowToken);

Completed in 428 milliseconds