HomeSort by relevance Sort by last modified time
    Searched refs:akm (Results 1 - 7 of 7) sorted by null

  /external/wpa_supplicant_8/src/common/
defs.h 55 static inline int wpa_key_mgmt_wpa_ieee8021x(int akm)
57 return !!(akm & (WPA_KEY_MGMT_IEEE8021X |
66 static inline int wpa_key_mgmt_wpa_psk(int akm)
68 return !!(akm & (WPA_KEY_MGMT_PSK |
75 static inline int wpa_key_mgmt_ft(int akm)
77 return !!(akm & (WPA_KEY_MGMT_FT_PSK |
82 static inline int wpa_key_mgmt_sae(int akm)
84 return !!(akm & (WPA_KEY_MGMT_SAE |
88 static inline int wpa_key_mgmt_sha256(int akm)
90 return !!(akm & (WPA_KEY_MGMT_PSK_SHA256
    [all...]
wpa_common.c 128 * @akmp: Negotiated AKM
1041 * rsn_pmkid_suite_b - Calculate PMK identifier for Suite B AKM
1074 * rsn_pmkid_suite_b_192 - Calculate PMK identifier for Suite B AKM
1192 u32 wpa_akm_to_suite(int akm)
1194 if (akm & WPA_KEY_MGMT_FT_IEEE8021X)
1196 if (akm & WPA_KEY_MGMT_FT_PSK)
1198 if (akm & WPA_KEY_MGMT_IEEE8021X)
1200 if (akm & WPA_KEY_MGMT_IEEE8021X_SHA256)
1202 if (akm & WPA_KEY_MGMT_IEEE8021X)
1204 if (akm & WPA_KEY_MGMT_PSK_SHA256
    [all...]
wpa_common.h 406 u32 wpa_akm_to_suite(int akm);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiParser.java 134 //AKM
136 security = ""; //parse error no AKM
148 security += "-EAP"; //default AKM
151 int akm = buf.getInt(offset); local
153 switch (akm) {
249 //AKM
251 security = ""; //parse error no AKM
263 security += "-EAP"; //default AKM
266 int akm = buf.getInt(offset); local
268 switch (akm) {
    [all...]
WifiAutoJoinController.java 333 String akm = WifiParser.parse_akm(null, null); local
334 logDbg(akm);
    [all...]
  /hardware/akm/AK8975_FS/libsensors/
sensors.cpp 118 .name = "AKM Sensor module",
140 akm = 1, enumerator in enum:sensors_poll_context_t::__anon23421
173 mSensors[akm] = new AkmSensor();
174 mPollFds[akm].fd = mSensors[akm]->getFd();
175 mPollFds[akm].events = POLLIN;
176 mPollFds[akm].revents = 0;
204 return akm;
293 ((AkmSensor*)(mSensors[akm]))->setAccel(&data[nb-1]);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
fft.c 280 REAL c1, c2, c3, cd, aa, aj, ak, ajm, ajp, akm, akp; local
501 akm = Re [kk] - Re [k2];
513 akp = akm + bjm;
515 akm -= bjm;
518 akp = akm - bjm;
520 akm += bjm;
527 Re [k3] = akm;
534 Re [k3] = akm * c3 - bkm * s3;
537 Im [k3] = akm * s3 + bkm * c3;
606 akm = Re [k1] - Re [k4]
    [all...]

Completed in 509 milliseconds