/frameworks/base/services/core/java/com/android/server/wm/ |
D | InputConsumerImpl.java | 38 final InputChannel mClientChannel; field in InputConsumerImpl 61 mClientChannel = mService.mInputManager.createInputChannel(name); in InputConsumerImpl() 63 mClientChannel.copyTo(inputChannel); in InputConsumerImpl() 71 mWindowHandle.token = mClientChannel.getToken(); in InputConsumerImpl() 152 mService.mInputManager.removeInputChannel(mClientChannel.getToken()); in disposeChannelsLw() 153 mClientChannel.dispose(); in disposeChannelsLw()
|
D | TaskPositioner.java | 99 InputChannel mClientChannel; field in TaskPositioner 216 if (mClientChannel != null) { in register() 222 mClientChannel = mService.mInputManager.createInputChannel(TAG); in register() 225 mClientChannel, mService.mAnimationHandler.getLooper(), in register() 234 mDragWindowHandle.token = mClientChannel.getToken(); in register() 290 if (mClientChannel == null) { in unregister() 296 mService.mInputManager.removeInputChannel(mClientChannel.getToken()); in unregister() 300 mClientChannel.dispose(); in unregister() 301 mClientChannel = null; in unregister()
|
D | Letterbox.java | 214 final InputChannel mClientChannel; field in Letterbox.InputInterceptor 223 mClientChannel = mWmService.mInputManager.createInputChannel(name); in InputInterceptor() 224 mInputEventReceiver = new SimpleInputReceiver(mClientChannel); in InputInterceptor() 226 mToken = mClientChannel.getToken(); in InputInterceptor() 260 mClientChannel.dispose(); in dispose()
|
D | DragState.java | 338 InputChannel mClientChannel; field in DragState.InputInterceptor 344 mClientChannel = mService.mInputManager.createInputChannel("drag"); in InputInterceptor() 345 mInputEventReceiver = new DragInputEventReceiver(mClientChannel, in InputInterceptor() 354 mDragWindowHandle.token = mClientChannel.getToken(); in InputInterceptor() 386 mService.mInputManager.removeInputChannel(mClientChannel.getToken()); in tearDown() 389 mClientChannel.dispose(); in tearDown() 390 mClientChannel = null; in tearDown() 404 return mInputInterceptor == null ? null : mInputInterceptor.mClientChannel; in getInputChannel()
|
D | TaskPositioningController.java | 191 transferFocusFromWin.mInputChannel, mTaskPositioner.mClientChannel, in startPositioningLocked()
|
D | InputMonitor.java | 118 mClientChannel, looper); in EventReceiverInputConsumer()
|
/frameworks/native/services/inputflinger/benchmarks/ |
D | InputDispatcher_benchmarks.cpp | 164 mClientChannel = *mDispatcher->createInputChannel(name); in FakeInputReceiver() 165 mConsumer = std::make_unique<InputConsumer>(mClientChannel); in FakeInputReceiver() 171 std::shared_ptr<InputChannel> mClientChannel; member in android::inputdispatcher::FakeInputReceiver 189 mInfo.token = mClientChannel->getConnectionToken(); in updateInfo()
|
/frameworks/native/libs/gui/tests/ |
D | EndToEndNativeInputTest.cpp | 75 mClientChannel = std::make_shared<InputChannel>(); in InputSurface() 76 mInputFlinger->createInputChannel("testchannels", mClientChannel.get()); in InputSurface() 80 mInputConsumer = new InputConsumer(mClientChannel); in InputSurface() 177 mInputFlinger->removeInputChannel(mClientChannel->getConnectionToken()); in ~InputSurface() 216 fd.fd = mClientChannel->getFd(); in waitForEventAvailable() 222 mInputInfo.token = mClientChannel->getConnectionToken(); in populateInputInfo() 249 std::shared_ptr<InputChannel> mClientChannel; member in android::test::InputSurface
|
/frameworks/native/libs/input/tests/ |
D | InputPublisherAndConsumer_test.cpp | 36 std::shared_ptr<InputChannel> mServerChannel, mClientChannel; member in android::InputPublisherAndConsumerTest 47 mClientChannel = std::move(clientChannel); in SetUp() 50 mConsumer = std::make_unique<InputConsumer>(mClientChannel); in SetUp() 64 EXPECT_EQ(mClientChannel.get(), mConsumer->getChannel().get()); in TEST_F()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputFlingerService_test.cpp | 118 std::unique_ptr<InputChannel> mServerChannel, mClientChannel; member in android::InputFlingerServiceTest 290 InputChannel::openInputChannelPair("testchannels", mServerChannel, mClientChannel); in SetUp()
|