Home
last modified time | relevance | path

Searched refs:mInputChannel (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/view/
DInputEventSender.java40 private InputChannel mInputChannel; field in InputEventSender
63 mInputChannel = inputChannel; in InputEventSender()
99 mInputChannel = null; in dispose()
DInputEventReceiver.java41 private InputChannel mInputChannel; field in InputEventReceiver
68 mInputChannel = inputChannel; in InputEventReceiver()
104 mInputChannel = null; in dispose()
DViewRootImpl.java187 InputChannel mInputChannel; field in ViewRootImpl
492 mInputChannel = new InputChannel(); in setView()
500 mAttachInfo.mContentInsets, mInputChannel); in setView()
505 mInputChannel = null; in setView()
572 if (mInputChannel != null) { in setView()
577 mInputEventReceiver = new WindowInputEventReceiver(mInputChannel, in setView()
2870 if (mInputChannel != null) { in dispatchDetachedFromWindow()
2871 mInputChannel.dispose(); in dispatchDetachedFromWindow()
2872 mInputChannel = null; in dispatchDetachedFromWindow()
/frameworks/base/core/jni/
Dandroid_view_InputChannel.cpp47 inline sp<InputChannel> getInputChannel() { return mInputChannel; } in getInputChannel()
53 sp<InputChannel> mInputChannel; member in android::NativeInputChannel
61 mInputChannel(inputChannel), mDisposeCallback(NULL) { in NativeInputChannel()
74 mDisposeCallback(env, obj, mInputChannel, mDisposeData); in invokeAndRemoveDisposeCallback()
/frameworks/base/core/java/android/service/wallpaper/
DWallpaperService.java163 InputChannel mInputChannel; field in WallpaperService.Engine
614 mInputChannel = new InputChannel(); in updateSurface()
616 Display.DEFAULT_DISPLAY, mContentInsets, mInputChannel) < 0) { in updateSurface()
623 mInputChannel, Looper.myLooper()); in updateSurface()
939 if (mInputChannel != null) { in detach()
940 mInputChannel.dispose(); in detach()
941 mInputChannel = null; in detach()
/frameworks/base/services/java/com/android/server/wm/
DWindowState.java286 InputChannel mInputChannel; field in WindowState
830 && mInputChannel != null && mInputWindowHandle != null; in isPotentialDragTarget()
1023 if (mInputChannel != null) { in setInputChannel()
1027 mInputChannel = inputChannel; in setInputChannel()
1032 if (mInputChannel != null) { in disposeInputChannel()
1033 mService.mInputManager.unregisterInputChannel(mInputChannel); in disposeInputChannel()
1035 mInputChannel.dispose(); in disposeInputChannel()
1036 mInputChannel = null; in disposeInputChannel()
DInputMonitor.java270 final InputChannel inputChannel = child.mInputChannel; in updateInputWindowsLw()
296 if (u.mInputChannel != null && u.mInputWindowHandle != null) { in updateInputWindowsLw()
DSession.java299 if (!mService.mInputManager.transferTouchFocus(callingWin.mInputChannel, in performDrag()
DWindowManagerService.java2256 mInputManager.registerInputChannel(win.mInputChannel, win.mInputWindowHandle); in addWindow()