Searched refs:staArr (Results 1 - 7 of 7) sorted by relevance
/drivers/peripheral/input/interfaces/include/ |
H A D | input_manager.h | 60 * @param staArr Indicates the pointer to the array storing information about the scanned input devices,
68 int32_t (*ScanInputDevice)(InputDevDesc *staArr, uint32_t arrLen);
|
/drivers/peripheral/input/hdi_service/ |
H A D | input_interfaces_impl.h | 34 int32_t ScanInputDevice(std::vector<DevDesc> &staArr) override;
|
H A D | input_interfaces_impl.cpp | 164 int32_t InputInterfacesImpl::ScanInputDevice(std::vector<DevDesc> &staArr) in ScanInputDevice() argument 189 staArr.push_back(StaArr); in ScanInputDevice()
|
/drivers/peripheral/input/hal/src/ |
H A D | input_manager.c | 225 static int32_t ScanInputDevice(InputDevDesc *staArr, uint32_t arrLen)
in ScanInputDevice() argument 266 if (memcpy_s(&staArr[count], sizeof(InputDevDesc), data, replayDataSize) != EOK) {
in ScanInputDevice() 271 HDF_LOGI("%s: type = %d, id =%d", __func__, staArr[count].devType, staArr[count].devIndex);
in ScanInputDevice()
|
/drivers/peripheral/input/udriver/src/ |
H A D | input_manager.cpp | 33 static int32_t ScanInputDevice(InputDevDesc *staArr, uint32_t arrLen)
in ScanInputDevice() argument 39 return gInputDeviceManager_->ScanDevice(staArr, arrLen);
in ScanInputDevice()
|
H A D | input_device_manager.cpp | 572 RetStatus InputDeviceManager::ScanDevice(InputDevDesc *staArr, uint32_t arrLen)
in ScanDevice() argument 574 if (staArr == nullptr) {
in ScanDevice() 586 (staArr + i)->devIndex = inputDevList_[i].index;
in ScanDevice() 587 (staArr + i)->devType = inputDevList_[i].detailInfo.devType;
in ScanDevice()
|
/drivers/peripheral/input/udriver/include/ |
H A D | input_device_manager.h | 91 RetStatus ScanDevice(InputDevDesc *staArr, uint32_t arrLen);
|
Completed in 5 milliseconds