Home
last modified time | relevance | path

Searched refs:mClientChannel (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DInputConsumerImpl.java38 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()
DTaskPositioner.java99 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()
DLetterbox.java214 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()
DDragState.java338 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()
DTaskPositioningController.java191 transferFocusFromWin.mInputChannel, mTaskPositioner.mClientChannel, in startPositioningLocked()
DInputMonitor.java118 mClientChannel, looper); in EventReceiverInputConsumer()
/frameworks/native/services/inputflinger/benchmarks/
DInputDispatcher_benchmarks.cpp164 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/
DEndToEndNativeInputTest.cpp75 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/
DInputPublisherAndConsumer_test.cpp36 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/
DInputFlingerService_test.cpp118 std::unique_ptr<InputChannel> mServerChannel, mClientChannel; member in android::InputFlingerServiceTest
290 InputChannel::openInputChannelPair("testchannels", mServerChannel, mClientChannel); in SetUp()