Home
last modified time | relevance | path

Searched refs:inputDevList (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/model/input/driver/
H A Dhdf_input_device_manager.c136 if (g_inputManager->inputDevList == NULL) { in AddInputDevice()
137 g_inputManager->inputDevList = inputDev; in AddInputDevice()
138 (g_inputManager->inputDevList)->next = NULL; in AddInputDevice()
140 tmpDev = g_inputManager->inputDevList; in AddInputDevice()
157 if (g_inputManager->inputDevList == NULL) { in CheckInputDevice()
160 tmpDev = g_inputManager->inputDevList; in CheckInputDevice()
174 if (g_inputManager->inputDevList == NULL) { in DeleteInputDevice()
178 g_inputManager->inputDevList = g_inputManager->inputDevList->next; in DeleteInputDevice()
182 InputDevice *preNode = g_inputManager->inputDevList; in DeleteInputDevice()
259 InputDevice *tmpDev = g_inputManager->inputDevList; in AllocDeviceID()
[all …]
H A Dhdf_input_device_manager.h132 InputDevice *inputDevList; member
/ohos5.0/drivers/peripheral/input/udriver/src/
H A Dinput_device_manager.cpp461 InputDevListNode inputDevList {}; in AddDeviceNodeToList() local
462 inputDevList.index = devIndex_; in AddDeviceNodeToList()
463 inputDevList.status = INPUT_DEVICE_STATUS_OPENED; in AddDeviceNodeToList()
464 inputDevList.fd = fd; in AddDeviceNodeToList()
466 …if (memcpy_s(inputDevList.devPathNode, devPath.length(), devPath.c_str(), devPath.length()) != EOK… in AddDeviceNodeToList()
467 memcpy_s(&inputDevList.detailInfo, sizeof(InputDeviceInfo), detailInfo.get(), in AddDeviceNodeToList()
472 inputDevList_.insert_or_assign(devIndex_, inputDevList); in AddDeviceNodeToList()
473 if (AddToEpoll(epollFd, inputDevList.fd) != INPUT_SUCCESS) { in AddDeviceNodeToList()