Searched defs:mInputChannel (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/
H A DInputEventSender.java40 private InputChannel mInputChannel; field in class:InputEventSender
63 mInputChannel = inputChannel;
99 mInputChannel = null;
H A DInputEventReceiver.java41 private InputChannel mInputChannel; field in class:InputEventReceiver
68 mInputChannel = inputChannel;
104 mInputChannel = null;
H A DViewRootImpl.java251 InputChannel mInputChannel; field in class:ViewRootImpl
631 mInputChannel = new InputChannel();
642 mAttachInfo.mOutsets, mInputChannel);
647 mInputChannel = null;
721 if (mInputChannel != null) {
726 mInputEventReceiver = new WindowInputEventReceiver(mInputChannel,
3292 if (mInputChannel != null) {
3293 mInputChannel.dispose();
3294 mInputChannel = null;
/frameworks/base/core/jni/
H A Dandroid_view_InputChannel.cpp49 inline sp<InputChannel> getInputChannel() { return mInputChannel; }
55 sp<InputChannel> mInputChannel; member in class:android::NativeInputChannel
63 mInputChannel(inputChannel), mDisposeCallback(NULL) {
76 mDisposeCallback(env, obj, mInputChannel, mDisposeData);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java176 InputChannel mInputChannel; field in class:WallpaperService.Engine
652 mInputChannel = new InputChannel();
655 mInputChannel) < 0) {
662 mInputChannel, Looper.myLooper());
1049 if (mInputChannel != null) {
1050 mInputChannel.dispose();
1051 mInputChannel = null;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java419 InputChannel mInputChannel; field in class:WindowState
1220 && mInputChannel != null && mInputWindowHandle != null;
1534 if (mInputChannel != null) {
1539 mInputChannel = inputChannels[0];
1552 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle);
1562 if (mInputChannel != null) {
1563 mService.mInputManager.unregisterInputChannel(mInputChannel);
1564 mInputChannel.dispose();
1565 mInputChannel = null;

Completed in 332 milliseconds