Lines Matching refs:InputChannel
69 std::unique_ptr<InputChannel> mServerChannel, mClientChannel;
81 binder::Status getInputChannels(std::vector<::android::InputChannel>* channels);
85 binder::Status createInputChannel(const std::string& name, InputChannel* outChannel) override;
93 std::vector<std::shared_ptr<InputChannel>> mInputChannels;
99 binder::Status getInputChannels(std::vector<::android::InputChannel>* channels) override;
106 binder::Status TestInputQuery::getInputChannels(std::vector<::android::InputChannel>* channels) { in getInputChannels()
116 InputChannel* outChannel) { in createInputChannel()
118 std::unique_ptr<InputChannel> serverChannel; in createInputChannel()
119 std::unique_ptr<InputChannel> clientChannel; in createInputChannel()
120 InputChannel::openInputChannelPair(name, serverChannel, clientChannel); in createInputChannel()
133 [&](std::shared_ptr<InputChannel>& c) { in removeInputChannel()
152 binder::Status TestInputManager::getInputChannels(std::vector<::android::InputChannel>* channels) { in getInputChannels()
154 for (std::shared_ptr<InputChannel>& channel : mInputChannels) { in getInputChannels()
169 InputChannel::openInputChannelPair("testchannels", mServerChannel, mClientChannel); in SetUp()
194 InputChannel channel; in TEST_F()
206 InputChannel channel; in TEST_F()
209 std::vector<::android::InputChannel> channels; in TEST_F()