/ohos5.0/drivers/peripheral/wlan/test/hdi_service/ |
H A D | wpa_hdi_direct_test.cpp | 374 uint32_t wepKeyLen = 16; variable 375 int32_t rc = g_wpaObj->GetWepKey(g_wpaObj, IFNAME, 0, wepKey, &wepKeyLen); 377 rc = g_wpaObj->GetWepKey(g_wpaObj, IFNAME, 1, wepKey, &wepKeyLen); 379 rc = g_wpaObj->GetWepKey(g_wpaObj, nullptr, 0, wepKey, &wepKeyLen); 381 rc = g_wpaObj->GetWepKey(g_wpaObj, nullptr, 1, wepKey, &wepKeyLen);
|
H A D | wpa_hdi_hal_services_c_test.cpp | 539 uint32_t wepKeyLen = 16; variable 543 rc = g_wpaObj->GetWepKey(g_wpaObj, IFNAME, 0, wepKey, &wepKeyLen); 545 rc = g_wpaObj->GetWepKey(g_wpaObj, IFNAME, 1, wepKey, &wepKeyLen);
|
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/ |
H A D | wpa_supplicant_hal.h | 116 …iCmdWepKey)(WifiWpaStaInterface *this, int keyIdx, unsigned char *wepKey, unsigned int *wepKeyLen);
|
H A D | wpa_common_cmd.h | 101 uint32_t *wepKeyLen);
|
H A D | wpa_supplicant_hal.c | 627 …CliCmdWepKey(WifiWpaStaInterface *this, int keyIdx, unsigned char *wepKey, unsigned int *wepKeyLen) in WpaCliCmdWepKey() argument 629 if (this == NULL || wepKey == NULL || wepKeyLen == NULL) { in WpaCliCmdWepKey() 653 *wepKeyLen = strlen(value); in WpaCliCmdWepKey()
|
H A D | wpa_common_cmd.c | 940 uint8_t *wepKey, uint32_t *wepKeyLen) in WpaInterfaceGetWepKey() argument 944 if (ifName == NULL || wepKey == NULL || wepKeyLen == NULL) { in WpaInterfaceGetWepKey() 955 int ret = pStaIfc->wpaCliCmdWepKey(pStaIfc, keyIdx, wepKey, wepKeyLen); in WpaInterfaceGetWepKey()
|
/ohos5.0/drivers/peripheral/wlan/test/fuzztest/ |
H A D | wpa_common_fuzzer.cpp | 281 uint32_t wepKeyLen = 16; in FuzzWpaInterfaceGetWepKey() local 283 interface->GetWepKey(interface, ifName, 1, wepKey, &wepKeyLen); in FuzzWpaInterfaceGetWepKey()
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/ |
H A D | iwpa_interface.h.txt | 213 uint32_t* wepKeyLen);
|
H A D | wpa_interface_stub.c.txt | 1834 uint32_t wepKeyLen = 0; 1857 if (!HdfSbufReadUint32(wpaInterfaceData, &wepKeyLen)) { 1863 …HDI_CHECK_VALUE_RET_GOTO(wepKeyLen, >, HDI_BUFF_MAX_SIZE / sizeof(uint8_t), wpaInterfaceRet, HDF_E… 1864 if (wepKeyLen > 0) { 1865 wepKey = (uint8_t*)OsalMemCalloc(sizeof(uint8_t) * (wepKeyLen)); 1879 wepKeyLen = (HDI_BUFF_MAX_SIZE / sizeof(uint8_t)); 1895 wpaInterfaceRet = serviceImpl->GetWepKey(serviceImpl, ifName, keyIdx, wepKey, &wepKeyLen); 1901 if (!WritePodArray(wpaInterfaceReply, wepKey, sizeof(uint8_t), wepKeyLen)) {
|
H A D | wpa_interface_service.c.txt | 200 uint32_t* wepKeyLen)
|
H A D | wpa_interface_proxy.c.txt | 1918 uint8_t* wepKey, uint32_t* wepKeyLen) 1961 if (wepKey == NULL || wepKeyLen == NULL || *wepKeyLen == 0) { 1967 if (!HdfSbufWriteUint32(wpaInterfaceData, *wepKeyLen)) { 1968 HDF_LOGE("%{public}s: write wepKeyLen failed!", __func__); 1979 if (!ReadPodArray(wpaInterfaceReply, wepKey, sizeof(uint8_t), wepKeyLen)) {
|