HomeSort by relevance Sort by last modified time
    Searched refs:windowToken (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/base/core/java/android/service/dreams/
IDreamService.aidl 23 void attach(IBinder windowToken);
Dream.java 323 * @param windowToken Binder to attach to the window to allow access to the correct window type.
326 final /*package*/ void attach(IBinder windowToken) {
334 if (DEBUG) Slog.v(TAG, "attaching window token: " + windowToken
339 lp.token = windowToken;
346 mWindow.setWindowManager(null, windowToken, "dream", true);
379 public void attach(IBinder windowToken) {
380 Dream.this.attach(windowToken);
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperService.aidl 26 IBinder windowToken, int windowType, boolean isPreview,
WallpaperService.java     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
AccessibilityManager.java 129 public int addAccessibilityInteractionConnection(IWindow windowToken,
134 public void removeAccessibilityInteractionConnection(IWindow windowToken) {
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityManager.aidl 47 int addAccessibilityInteractionConnection(IWindow windowToken,
50 void removeAccessibilityInteractionConnection(IWindow windowToken);
AccessibilityManager.java 380 * @param windowToken The window token to which a connection is added.
385 public int addAccessibilityInteractionConnection(IWindow windowToken,
388 return mService.addAccessibilityInteractionConnection(windowToken, connection);
397 * @param windowToken The window token to which a connection is removed.
401 public void removeAccessibilityInteractionConnection(IWindow windowToken) {
403 mService.removeAccessibilityInteractionConnection(windowToken);
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuDialogHelper.java 49 * @param windowToken Optional token to assign to the window.
51 public void show(IBinder windowToken) {
84 if (windowToken != null) {
85 lp.token = windowToken;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
FaceUnlock.java 326 IBinder windowToken = mFaceUnlockView.getWindowToken();
327 if (windowToken != null) {
336 startUi(windowToken, position[0], position[1], mFaceUnlockView.getWidth(),
339 Log.e(TAG, "windowToken is null in handleServiceConnected()");
456 private void startUi(IBinder windowToken, int x, int y, int w, int h) {
462 mService.startUi(windowToken, x, y, w, h,
KeyguardViewManager.java 64 void onShown(IBinder windowToken);
PhoneWindowManager.java     [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 682 * @param windowToken The window who these offsets should be associated
688 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) {
692 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
715 * @param windowToken The window who these offsets should be associated
725 public void sendWallpaperCommand(IBinder windowToken, String action,
730 windowToken, action, x, y, z, extras, false);
743 * @param windowToken The window who these offsets should be associated
747 public void clearWallpaperOffsets(IBinder windowToken) {
750 windowToken, -1, -1, -1, -1);
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 167 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodManager.aidl 54 InputBindResult windowGainedFocus(in IInputMethodClient client, in IBinder windowToken,
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 280 void WebPageProxy::registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elementToken, const CoreIPC::DataReference& windowToken)
285 process()->send(Messages::WebPage::RegisterUIProcessAccessibilityTokens(elementToken, windowToken), m_pageID);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeIInputMethodManager.java 212 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 575 void WebPage::registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elementToken, const CoreIPC::DataReference& windowToken)
579 NSData* windowTokenData = [NSData dataWithBytes:windowToken.data() length:windowToken.size()];
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 468 public int addAccessibilityInteractionConnection(IWindow windowToken,
471 final IWindow addedWindowToken = windowToken;
485 public void removeAccessibilityInteractionConnection(IWindow windowToken) {
489 if (mWindowIdToWindowTokenMap.valueAt(i) == windowToken.asBinder()) {
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 318 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elemenToken, const CoreIPC::DataReference& windowToken);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 350 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elemenToken, const CoreIPC::DataReference& windowToken);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm     [all...]
  /frameworks/base/services/java/com/android/server/
InputMethodManagerService.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 348 * Mapping from a token IBinder to a WindowToken object.
350 final HashMap<IBinder, WindowToken> mTokenMap =
351 new HashMap<IBinder, WindowToken>();
357 final ArrayList<WindowToken> mExitingTokens = new ArrayList<WindowToken>();
579 final ArrayList<WindowToken> mWallpaperTokens = new ArrayList<WindowToken>();
    [all...]

Completed in 1836 milliseconds

1 2