Home
last modified time | relevance | path

Searched refs:wepKey (Results 1 – 5 of 5) sorted by relevance

/aosp12/hardware/interfaces/wifi/supplicant/1.0/
H A DISupplicantStaNetwork.hal298 * @param wepKey value to set.
309 setWepKey(uint32_t keyIdx, vec<uint8_t> wepKey)
714 * @return wepKey value set.
717 generates (SupplicantStatus status, vec<uint8_t> wepKey);
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DSupplicantStaNetworkHalTest.java1658 mSupplicantVariables.wepKey[keyIdx] = key; in setupISupplicantNetworkMock()
1665 cb.onValues(mStatusSuccess, mSupplicantVariables.wepKey[keyIdx]); in setupISupplicantNetworkMock()
2332 public ArrayList<Byte>[] wepKey = new ArrayList[4]; field in SupplicantStaNetworkHalTest.SupplicantNetworkVariables
H A DSupplicantStaIfaceHalTest.java2933 int securityType, String wepKey) throws Exception { in executeAndValidateConnectSequenceWithKeyMgmt() argument
2938 config.wepKeys[0] = wepKey; in executeAndValidateConnectSequenceWithKeyMgmt()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiConfiguration.java3656 for (String wepKey : wepKeys) { in writeToParcel()
3657 dest.writeString(wepKey); in writeToParcel()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DSupplicantStaNetworkHal.java1807 private boolean setWepKey(int keyIdx, java.util.ArrayList<Byte> wepKey) { in setWepKey() argument
1812 SupplicantStatus status = mISupplicantStaNetwork.setWepKey(keyIdx, wepKey); in setWepKey()