Home
last modified time | relevance | path

Searched refs:InputDevDesc (Results 1 – 25 of 29) sorted by relevance

12

/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/input/
H A D_input_dev_desc.md1 # InputDevDesc chapter
30 uint32_t InputDevDesc::devIndex
40 uint32_t InputDevDesc::devType
H A D_input_manager.md22 | int32_t(\* [ScanInputDevice](#scaninputdevice) )([InputDevDesc](_input_dev_desc.md) \*staArr, uin…
134 int32_t(* InputManager::ScanInputDevice) (InputDevDesc *staArr, uint32_t arrLen)
H A DReadme-CN.md34 - [InputDevDesc](_input_dev_desc.md)
H A Dinput__type_8h.md22 | struct  [InputDevDesc](_input_dev_desc.md) | Input设备描述信息。 |
H A D_input.md36 | struct  [InputDevDesc](_input_dev_desc.md) | Input设备描述信息。 |
/ohos5.0/drivers/peripheral/input/test/fuzztest/openinputdevice_fuzzer/
H A Dopeninputdevice_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in OpenInputDeviceFuzzTest()
32 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in OpenInputDeviceFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/closeinputdevice_fuzzer/
H A Dcloseinputdevice_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in CloseInputDeviceFuzzTest()
32 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in CloseInputDeviceFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputgetchipinfo_fuzzer/
H A Dinputgetchipinfo_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in InputGetchipInfoFuzzTest()
34 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputGetchipInfoFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputgetchipname_fuzzer/
H A Dinputgetchipname_fuzzer.cpp28 InputDevDesc sta[MAX_DEVICES]; in InputGetChipnameFuzzTest()
33 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputGetChipnameFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputgetdevicetype_fuzzer/
H A Dinputgetdevicetype_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in InputGetDeviceTypeFuzzTest()
34 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputGetDeviceTypeFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputgetpowerstatus_fuzzer/
H A Dinputgetpowerstatus_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in InputGetpowerStatusFuzzTest()
33 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputGetpowerStatusFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputgetvendorname_fuzzer/
H A Dinputgetvendorname_fuzzer.cpp29 InputDevDesc sta[MAX_DEVICES]; in InputGetVendorNameFuzzTest()
34 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputGetVendorNameFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputregisterreportcallback_fuzzer/
H A Dinputregisterreportcallback_fuzzer.cpp28 InputDevDesc sta[MAX_DEVICES]; in DoSomethingInterestingWithMyAPI()
32 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in DoSomethingInterestingWithMyAPI()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputsetgesturemode_fuzzer/
H A Dinputsetgesturemode_fuzzer.cpp33 InputDevDesc sta[MAX_DEVICES]; in InputSetGestureModeFuzzTest()
37 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputSetGestureModeFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputsetpowerstatus_fuzzer/
H A Dinputsetpowerstatus_fuzzer.cpp33 InputDevDesc sta[MAX_DEVICES]; in InputSetPowerStatusFuzzTest()
37 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputSetPowerStatusFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/inputunregisterreportcallback_fuzzer/
H A Dinputunregisterreportcallback_fuzzer.cpp28 InputDevDesc sta[MAX_DEVICES]; in InputUnregisterReportCallbackFuzzTest()
33 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in InputUnregisterReportCallbackFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/runextracommand_fuzzer/
H A Drunextracommand_fuzzer.cpp28 InputDevDesc sta[MAX_DEVICES]; in RunExtraCommandFuzzTest()
34 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in RunExtraCommandFuzzTest()
/ohos5.0/drivers/peripheral/input/test/fuzztest/runcapacitancetest_fuzzer/
H A Druncapacitancetest_fuzzer.cpp34 InputDevDesc sta[MAX_DEVICES]; in RunCapacitanceTestFuzzTest()
39 … (void)memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in RunCapacitanceTestFuzzTest()
/ohos5.0/drivers/peripheral/input/test/unittest/common/
H A Dhdi_input_test.cpp38 static void CloseOnlineDev(InputDevDesc *sta, int32_t len);
39 static void OpenOnlineDev(InputDevDesc *sta, int32_t len);
52 InputDevDesc sta[MAX_DEVICES]; in SetUpTestCase()
53 ret = memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)); in SetUpTestCase()
138 static void OpenOnlineDev(InputDevDesc *sta, int32_t len) in OpenOnlineDev()
164 static void CloseOnlineDev(InputDevDesc *sta, int32_t len) in CloseOnlineDev()
192 InputDevDesc sta[MAX_DEVICES];
200 ret = g_inputInterface->iInputManager->ScanInputDevice(sta, sizeof(sta)/sizeof(InputDevDesc));
212 InputDevDesc sta[MAX_DEVICES];
/ohos5.0/drivers/peripheral/input/interfaces/include/
H A Dinput_manager.h68 int32_t (*ScanInputDevice)(InputDevDesc *staArr, uint32_t arrLen);
H A Dinput_type.h184 } InputDevDesc; typedef
/ohos5.0/drivers/peripheral/input/hal/src/
H A Dinput_manager.c225 static int32_t ScanInputDevice(InputDevDesc *staArr, uint32_t arrLen) in ScanInputDevice()
262 replayDataSize != sizeof(InputDevDesc)) { in ScanInputDevice()
266 if (memcpy_s(&staArr[count], sizeof(InputDevDesc), data, replayDataSize) != EOK) { in ScanInputDevice()
/ohos5.0/base/update/updater/services/ui/driver/
H A Dinput_event.cpp98 InputDevDesc sta[MAX_INPUT_DEVICES] = {{0}}; in HdfInit()
/ohos5.0/drivers/peripheral/input/hdi_service/
H A Dinput_interfaces_impl.cpp172 InputDevDesc staArrHdf[MAX_DEVICES]; in ScanInputDevice()
173 …2_t ret = memset_s(staArrHdf, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDev… in ScanInputDevice()
/ohos5.0/drivers/peripheral/input/test/unittest/udriver/
H A Dhdi_input_test.cpp129 InputDevDesc sta[MAX_DEVICES];
130 …if (memset_s(sta, MAX_DEVICES * sizeof(InputDevDesc), 0, MAX_DEVICES * sizeof(InputDevDesc)) != EO…
138 … ret = g_inputInterface->iInputManager->ScanInputDevice(sta, sizeof(sta) / sizeof(InputDevDesc));

12