HomeSort by relevance Sort by last modified time
    Searched defs:mInputManager (Results 26 - 37 of 37) sorted by null

12

  /frameworks/base/services/core/java/com/android/server/wm/
DragState.java 217 mService.mInputManager.registerInputChannel(mServerChannel, null);
262 mService.mInputManager.unregisterInputChannel(mServerChannel);
TaskPositioner.java 249 mService.mInputManager.registerInputChannel(mServerChannel, null);
314 mService.mInputManager.unregisterInputChannel(mServerChannel);
WindowManagerService.java 731 final InputManagerService mInputManager;
    [all...]
WindowState.java     [all...]
  /packages/apps/TV/src/com/android/tv/
InputSessionManager.java 67 private final TvInputManagerHelper mInputManager;
79 mInputManager = TvSingletons.getSingletons(context).getTvInputManagerHelper();
316 TvInputInfo input = mInputManager.getTvInputInfo(mInputId);
448 TvInputInfo input = mInputManager.getTvInputInfo(inputId);
  /packages/apps/TV/src/com/android/tv/data/
ChannelDataManager.java 75 private final TvInputManagerHelper mInputManager;
163 mInputManager = inputManager;
202 mInputManager.addCallback(mTvInputCallback);
218 mInputManager.removeCallback(mTvInputCallback);
564 mInputRemoved = !mInputManager.hasTvInputInfo(channel.getInputId());
ChannelImpl.java 708 private final TvInputManagerHelper mInputManager;
714 mInputManager = inputManager;
728 boolean lhsIsPartner = mInputManager.isPartnerInput(lhs.getInputId());
729 boolean rhsIsPartner = mInputManager.isPartnerInput(rhs.getInputId());
766 TvInputInfo info = mInputManager.getTvInputInfo(channel.getInputId());
  /frameworks/base/services/core/jni/
com_android_server_input_InputManagerService.cpp 202 inline sp<InputManager> getInputManager() const { return mInputManager; }
271 sp<InputManager> mInputManager;
343 mInputManager = new InputManager(eventHub, this, this);
370 mInputManager->getReader()->dump(dump);
373 mInputManager->getDispatcher()->dump(dump);
412 mInputManager->getReader()->requestRefreshConfiguration(
446 mInputManager->getReader()->requestRefreshConfiguration(
455 return mInputManager->getDispatcher()->registerInputChannel(
462 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
759 mInputManager->getDispatcher()->setInputWindows(windowHandles)
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/
DvrDataManagerImpl.java 84 private final TvInputManagerHelper mInputManager;
145 for (TvInputInfo input : mInputManager.getTvInputInfos(true, true)) {
176 mInputManager = tvSingletons.getTvInputManagerHelper();
182 mInputManager.addCallback(mInputCallback);
318 mInputManager.removeCallback(mInputCallback);
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java 189 private final TvInputManagerHelper mInputManager;
468 mInputManager = tvSingletons.getTvInputManagerHelper();
    [all...]
TvOverlayManager.java 199 private final TvInputManagerHelper mInputManager;
237 mInputManager = singletons.getTvInputManagerHelper();
353 mInputManager.getTvInputInfo(inputId);
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
TvInputManagerHelper.java 613 private final TvInputManagerHelper mInputManager;
616 mInputManager = inputManager;
621 if (mInputManager.isPartnerInput(lhs) != mInputManager.isPartnerInput(rhs)) {
622 return mInputManager.isPartnerInput(lhs) ? -1 : 1;
624 return mInputManager.loadLabel(lhs).compareTo(mInputManager.loadLabel(rhs));

Completed in 1070 milliseconds

12