Lines Matching refs:searchIndex
686 auto searchIndex = inputDevList_.find(deviceIndex); in OpenDevice() local
687 if (searchIndex != inputDevList_.end()) { in OpenDevice()
688 if (searchIndex->second.status != INPUT_DEVICE_STATUS_OPENED) { in OpenDevice()
689 auto openRet = OpenInputDevice(searchIndex->second.devPathNode); in OpenDevice()
698 searchIndex->second.fd = openRet; in OpenDevice()
701 __func__, searchIndex->second.devPathNode, searchIndex->second.fd); in OpenDevice()
703 … __func__, searchIndex->second.devPathNode, searchIndex->second.status, searchIndex->first); in OpenDevice()
704 AddToEpoll(mEpollId_, searchIndex->second.fd); in OpenDevice()
723 auto searchIndex = inputDevList_.find(deviceIndex); in CloseDevice() local
724 if (searchIndex != inputDevList_.end()) { in CloseDevice()
725 ret = CloseInputDevice(searchIndex->second.devPathNode); in CloseDevice()