Searched defs:mInputChannel (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/android/view/ |
H A D | InputEventSender.java | 40 private InputChannel mInputChannel; field in class:InputEventSender 63 mInputChannel = inputChannel; 99 mInputChannel = null;
|
H A D | InputEventReceiver.java | 41 private InputChannel mInputChannel; field in class:InputEventReceiver 68 mInputChannel = inputChannel; 104 mInputChannel = null;
|
H A D | ViewRootImpl.java | 325 InputChannel mInputChannel; field in class:ViewRootImpl 750 mInputChannel = new InputChannel(); 761 mAttachInfo.mOutsets, mAttachInfo.mDisplayCutout, mInputChannel); 766 mInputChannel = null; 841 if (mInputChannel != null) { 846 mInputEventReceiver = new WindowInputEventReceiver(mInputChannel, 3848 if (mInputChannel != null) { 3849 mInputChannel.dispose(); 3850 mInputChannel = null;
|
/frameworks/base/core/jni/ |
H A D | android_view_InputChannel.cpp | 49 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 D | WallpaperService.java | 189 InputChannel mInputChannel; field in class:WallpaperService.Engine 789 mInputChannel = new InputChannel(); 792 mOutsets, mDisplayCutout, mInputChannel) < 0) { 799 mInputChannel, Looper.myLooper()); 1213 if (mInputChannel != null) { 1214 mInputChannel.dispose(); 1215 mInputChannel = null;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowState.java | 547 InputChannel mInputChannel; field in class:WindowState 1538 && mInputChannel != null && mInputWindowHandle != null; 2142 if (mInputChannel != null) { 2147 mInputChannel = inputChannels[0]; 2160 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle); 2170 if (mInputChannel != null) { 2171 mService.mInputManager.unregisterInputChannel(mInputChannel); 2172 mInputChannel.dispose(); 2173 mInputChannel = null;
|
Completed in 55 milliseconds