Lines Matching refs:serverChannel
415 std::shared_ptr<InputChannel>& serverChannel, in openInputChannelPair() argument
420 serverChannel = std::move(uniqueServerChannel); in openInputChannelPair()
5226 std::unique_ptr<InputChannel> serverChannel; in createInputChannel() local
5228 status_t result = InputChannel::openInputChannelPair(name, serverChannel, clientChannel); in createInputChannel()
5236 const sp<IBinder>& token = serverChannel->getConnectionToken(); in createInputChannel()
5237 int fd = serverChannel->getFd(); in createInputChannel()
5239 new Connection(std::move(serverChannel), false /*monitor*/, mIdGenerator); in createInputChannel()
5261 std::shared_ptr<InputChannel> serverChannel; in createInputMonitor() local
5263 status_t result = openInputChannelPair(name, serverChannel, clientChannel); in createInputMonitor()
5276 sp<Connection> connection = new Connection(serverChannel, true /*monitor*/, mIdGenerator); in createInputMonitor()
5277 const sp<IBinder>& token = serverChannel->getConnectionToken(); in createInputMonitor()
5278 const int fd = serverChannel->getFd(); in createInputMonitor()
5289 monitorsByDisplay[displayId].emplace_back(serverChannel, pid); in createInputMonitor()