HomeSort by relevance Sort by last modified time
    Searched refs:os_strcmp (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/wpa_supplicant_8/hostapd/
config_file.c 362 if (os_strcmp(start, "TTLS-PAP") == 0) {
366 if (os_strcmp(start, "TTLS-CHAP") == 0) {
370 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
375 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
380 if (os_strcmp(start, "MACACL") == 0) {
684 if (os_strcmp(start, "WPA-PSK") == 0)
686 else if (os_strcmp(start, "WPA-EAP") == 0)
689 else if (os_strcmp(start, "FT-PSK") == 0)
691 else if (os_strcmp(start, "FT-EAP") == 0)
695 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0
    [all...]
ctrl_iface.c 258 if (os_strcmp(cmd, "WPS") == 0)
260 else if (os_strcmp(cmd, "NDEF") == 0)
306 if (os_strcmp(cmd, "WPS") == 0)
310 if (os_strcmp(cmd, "NDEF") == 0)
314 if (os_strcmp(cmd, "enable") == 0)
317 if (os_strcmp(cmd, "disable") == 0) {
340 if (os_strcmp(cmd, "WPS") == 0)
342 else if (os_strcmp(cmd, "NDEF") == 0)
347 if (os_strcmp(pos, "WPS-CR") == 0)
421 if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 92 if (os_strcmp(entry.key, "Timeout") == 0 &&
95 } else if (os_strcmp(entry.key, "RequestedDeviceTypes") == 0) {
115 } else if (os_strcmp(entry.key, "DiscoveryType") == 0 &&
117 if (os_strcmp(entry.str_value, "start_with_full") == 0)
119 else if (os_strcmp(entry.str_value, "social") == 0)
121 else if (os_strcmp(entry.str_value, "progressive") == 0)
216 if (os_strcmp(entry.key, "period") == 0 &&
219 else if (os_strcmp(entry.key, "interval") == 0 &&
260 if (os_strcmp(entry.key, "duration1") == 0 &&
263 else if (os_strcmp(entry.key, "interval1") == 0 &
    [all...]
dbus_new_handlers_wps.c 51 if (os_strcmp(val, "enrollee") == 0)
53 else if (os_strcmp(val, "registrar") == 0)
81 if (os_strcmp(val, "pin") == 0)
83 else if (os_strcmp(val, "pbc") == 0)
186 if (os_strcmp(key, "Role") == 0)
189 else if (os_strcmp(key, "Type") == 0)
192 else if (os_strcmp(key, "Bssid") == 0)
195 else if (os_strcmp(key, "Pin") == 0)
199 else if (os_strcmp(key, "P2PDeviceAddress") == 0)
dbus_old_handlers_wps.c 39 if (os_strcmp(arg_bssid, "any") == 0)
81 if (os_strcmp(arg_bssid, "any") == 0)
dbus_old.c 185 if (os_strcmp(dbus_message_get_member(message), "properties") == 0)
283 else if (os_strcmp(method, "wpsPbc") == 0)
285 else if (os_strcmp(method, "wpsPin") == 0)
287 else if (os_strcmp(method, "wpsReg") == 0)
290 else if (os_strcmp(method, "flush") == 0)
dbus_new_helpers.c 149 if (os_strcmp(dbus_message_get_signature(message), "s") != 0)
165 if (os_strcmp(dbus_message_get_signature(message), "ss")) {
199 if (os_strcmp(dbus_message_get_signature(message), "ssv")) {
552 if (os_strcmp(error.name, DBUS_ERROR_OBJECT_PATH_IN_USE) == 0) {
616 if (os_strcmp(dsc->dbus_interface, interface) != 0)
864 if (os_strcmp(property, dsc->dbus_property) == 0 &&
865 os_strcmp(interface, dsc->dbus_interface) == 0) {
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 44 if (os_strcmp(start, "TTLS-PAP") == 0) {
48 if (os_strcmp(start, "TTLS-CHAP") == 0) {
52 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
56 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
85 if (os_strcmp(col[i], "password") == 0 && argv[i]) {
90 } else if (os_strcmp(col[i], "methods") == 0 && argv[i]) {
92 } else if (os_strcmp(col[i], "remediation") == 0 && argv[i]) {
108 if (os_strcmp(col[i], "identity") == 0 && argv[i])
110 else if (os_strcmp(col[i], "methods") == 0 && argv[i])
  /external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c 49 if (os_strcmp(m->name, name) == 0) {
119 os_strcmp(m->name, method->name) == 0) {
eap_sim_db.c 213 if (os_strcmp(col[i], "permanent") == 0 && argv[i]) {
314 if (os_strcmp(col[i], "permanent") == 0 && argv[i]) {
318 } else if (os_strcmp(col[i], "counter") == 0 && argv[i]) {
320 } else if (os_strcmp(col[i], "mk") == 0 && argv[i]) {
322 } else if (os_strcmp(col[i], "k_encr") == 0 && argv[i]) {
325 } else if (os_strcmp(col[i], "k_aut") == 0 && argv[i]) {
328 } else if (os_strcmp(col[i], "k_re") == 0 && argv[i]) {
383 if (entry->aka == aka && os_strcmp(entry->imsi, imsi) == 0) {
662 if (os_strcmp(cmd, "SIM-RESP-AUTH") == 0)
664 else if (os_strcmp(cmd, "AKA-RESP-AUTH") == 0
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_none.c 177 return os_strcmp(s1, s2);
203 int os_strcmp(const char *s1, const char *s2) function
browser-system.c 40 if (os_strcmp(url, "/") == 0) {
trace.c 278 os_strcmp(data.function, __func__) != 0)) {
314 (os_strcmp(func, "wpa_trace_add_ref_func") == 0 ||
315 os_strcmp(func, "wpa_trace_check_ref") == 0 ||
316 os_strcmp(func, "wpa_trace_show") == 0))
329 os_strcmp(func, "main") == 0)
os_unix.c 530 if (i < res && os_strcmp(func[i], __func__) == 0)
532 if (i < res && os_strcmp(func[i], "os_malloc") == 0)
534 if (i < res && os_strcmp(func[i], "os_zalloc") == 0)
536 if (i < res && os_strcmp(func[i], "os_calloc") == 0)
538 if (i < res && os_strcmp(func[i], "os_realloc") == 0)
540 if (i < res && os_strcmp(func[i], "os_realloc_array") == 0)
542 if (i < res && os_strcmp(func[i], "os_strdup") == 0)
614 if (i < res && os_strcmp(func[i], __func__) == 0)
browser-android.c 40 if (os_strcmp(url, "/") == 0) {
browser-wpadebug.c 40 if (os_strcmp(url, "/") == 0) {
ext_password.c 47 if (os_strcmp(backends[i]->name, backend) == 0) {
os.h 426 * os_strcmp - Compare two strings
432 int os_strcmp(const char *s1, const char *s2);
535 #ifndef os_strcmp
536 #define os_strcmp(s1, s2) strcmp((s1), (s2)) macro
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 69 if (os_strcmp(value, "NULL") == 0) {
358 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
359 os_strcmp(value, "any") == 0) {
571 if (os_strcmp(start, "WPA") == 0)
573 else if (os_strcmp(start, "RSN") == 0 ||
574 os_strcmp(start, "WPA2") == 0)
576 else if (os_strcmp(start, "OSEN") == 0)
672 if (os_strcmp(start, "WPA-PSK") == 0)
674 else if (os_strcmp(start, "WPA-EAP") == 0)
676 else if (os_strcmp(start, "IEEE8021X") == 0
    [all...]
ctrl_iface.c 294 if (os_strcmp(band, "AUTO") == 0)
296 else if (os_strcmp(band, "5G") == 0)
298 else if (os_strcmp(band, "2G") == 0)
419 if (os_strcmp(value, "disable") == 0)
489 } else if (os_strcmp(cmd, "blob") == 0) {
518 if (os_strcmp(cmd, "version") == 0) {
536 } else if (os_strcmp(cmd, "gtk") == 0) {
543 } else if (os_strcmp(cmd, "tls_library") == 0) {
661 if (os_strcmp(addr, "*") == 0) {
924 if (cmd == NULL || os_strcmp(cmd, "any") == 0)
    [all...]
ctrl_iface_udp.c 249 if (os_strcmp(addr, "::1")) {
270 if (os_strcmp(buf, "GET_COOKIE") == 0) {
304 if (os_strcmp(pos, "ATTACH") == 0) {
312 } else if (os_strcmp(pos, "DETACH") == 0) {
641 if (os_strcmp(buf, "GET_COOKIE") == 0) {
668 if (os_strcmp(pos, "ATTACH") == 0) {
674 } else if (os_strcmp(pos, "DETACH") == 0) {
main_winsvc.c 423 if (os_strcmp(argv[1], "reg") == 0) {
445 } else if (os_strcmp(argv[1], "unreg") == 0) {
447 } else if (os_strcmp(argv[1], "app") == 0) {
wpas_glue.c 726 if (os_strcmp(field, "IDENTITY") == 0)
728 else if (os_strcmp(field, "PASSWORD") == 0)
730 else if (os_strcmp(field, "NEW_PASSWORD") == 0)
732 else if (os_strcmp(field, "PIN") == 0)
734 else if (os_strcmp(field, "OTP") == 0)
736 else if (os_strcmp(field, "PASSPHRASE") == 0)
738 else if (os_strcmp(field, "SIM") == 0)
740 else if (os_strcmp(field, "PSK_PASSPHRASE") == 0)
742 else if (os_strcmp(field, "EXT_CERT_CHECK") == 0)
  /external/wpa_supplicant_8/hs20/client/
est.c 257 if (os_strcmp(txt, "1.2.840.113549.1.9.7") == 0) {
259 } else if (os_strcmp(txt, "1.2.840.113549.1.1.11") == 0) {
282 if (os_strcmp(txt, "1.3.6.1.1.1.1.22") == 0) {
284 } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.3") == 0) {
286 } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.4") == 0) {
288 } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.5") == 0) {
311 if (os_strcmp(txt, "1.2.840.113549.1.9.14") == 0) {
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast_pac.c 432 if (os_strcmp(pac_file_hdr, rc.buf) != 0)
436 if (os_strcmp(rc.buf, "START") == 0)
438 else if (os_strcmp(rc.buf, "END") == 0) {
443 else if (os_strcmp(rc.buf, "PAC-Type") == 0)
445 else if (os_strcmp(rc.buf, "PAC-Key") == 0)
447 else if (os_strcmp(rc.buf, "PAC-Opaque") == 0)
449 else if (os_strcmp(rc.buf, "A-ID") == 0)
451 else if (os_strcmp(rc.buf, "I-ID") == 0)
453 else if (os_strcmp(rc.buf, "A-ID-Info") == 0)

Completed in 158 milliseconds

1 2 3 4