Lines Matching full:connectionindex
920 ssize_t connectionIndex = getConnectionIndexLocked(inputTarget.inputChannel);
921 if (connectionIndex >= 0) {
922 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
1014 ssize_t connectionIndex = getConnectionIndexLocked(inputChannel);
1015 if (connectionIndex >= 0) {
1016 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
1629 ssize_t connectionIndex = getConnectionIndexLocked(windowHandle->getInputChannel());
1630 if (connectionIndex < 0) {
1637 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
2097 ssize_t connectionIndex = d->mConnectionsByFd.indexOfKey(fd);
2098 if (connectionIndex < 0) {
2105 sp<Connection> connection = d->mConnectionsByFd.valueAt(connectionIndex);
3341 ssize_t connectionIndex = getConnectionIndexLocked(inputChannel);
3342 if (connectionIndex < 0) {
3348 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
3349 mConnectionsByFd.removeItemsAt(connectionIndex);
3374 ssize_t connectionIndex = mConnectionsByFd.indexOfKey(inputChannel->getFd());
3375 if (connectionIndex >= 0) {
3376 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
3378 return connectionIndex;