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

1 2 3

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 32 if (os_strncmp(dsc->dbus_interface, interface,
142 return !os_strncmp(registered_sig, sig, MAX_SIG_LEN);
253 if (!os_strncmp(property_dsc->dbus_property, property,
255 !os_strncmp(property_dsc->dbus_interface, interface,
269 if (os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
291 if (!os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
293 !os_strncmp(WPA_DBUS_PROPERTIES_SET, method,
295 !os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
306 if (!os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
333 if (!os_strncmp(method_dsc->dbus_method, method
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_none.c 193 return os_strncmp(s1, s2, n);
215 int os_strncmp(const char *s1, const char *s2, size_t n) function
browser-system.c 43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
ext_password_test.c 58 if (os_strncmp(pos, name, nlen) == 0 && pos[nlen] == '=') {
browser-android.c 43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
browser-wpadebug.c 43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
os.h 435 * os_strncmp - Compare two strings
443 int os_strncmp(const char *s1, const char *s2, size_t n);
538 #ifndef os_strncmp
539 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n)) macro
os_internal.c 371 return os_strncmp(s1, s2, n);
414 int os_strncmp(const char *s1, const char *s2, size_t n) function
492 if (os_strncmp(haystack, needle, len) == 0)
json.c 353 os_strncmp(pos, "true", 4) == 0) ||
355 os_strncmp(pos, "false", 5) == 0) ||
357 os_strncmp(pos, "null", 4) == 0))) {
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c 143 if (os_strncmp(pos, "bssid ", 6) == 0) {
164 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
400 if (os_strncmp(cmd, "2G", 2) == 0)
402 else if (os_strncmp(cmd, "5G", 2) == 0)
1119 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
    [all...]
bgscan.c 48 if (os_strncmp(name, bgscan_modules[i]->name, nlen) == 0) {
ctrl_iface_unix.c 84 if (len >= 5 && os_strncmp(buf, "PONG\n", 5) == 0)
165 } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
243 if (os_strncmp(pbuf, "DIR=", 4) == 0) {
512 if (os_strncmp(buf, "DIR=", 4) == 0) {
717 } else if (os_strncmp(wpa_s->global->params.ctrl_interface,
719 os_strncmp(wpa_s->global->params.ctrl_interface,
826 if (os_strncmp(buf, "DIR=", 4) == 0) {
1121 if (os_strncmp(ctrl, "@android:", 9) == 0) {
1134 if (os_strncmp(ctrl, "@abstract:", 10) != 0) {
1163 if (os_strncmp(ctrl, "@abstract:", 10) == 0)
    [all...]
autoscan.c 74 if (os_strncmp(name, autoscan_modules[i]->name, nlen) == 0) {
bgscan_learn.c 118 os_strncmp(buf, "wpa_supplicant-bgscan-learn\n", 28) != 0) {
126 if (os_strncmp(buf, "BSS ", 4) == 0) {
141 if (os_strncmp(buf, "NEIGHBOR ", 9) == 0) {
ctrl_iface_udp.c 282 if (os_strncmp(buf, "COOKIE=", 7) != 0) {
318 } else if (os_strncmp(pos, "LEVEL ", 6) == 0) {
646 if (os_strncmp(buf, "COOKIE=", 7) != 0) {
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c     [all...]
hlr_auc_gw.c 868 if (os_strncmp(cmd, "SIM-REQ-AUTH ", 13) == 0)
871 if (os_strncmp(cmd, "GSM-AUTH-REQ ", 13) == 0)
874 if (os_strncmp(cmd, "AKA-REQ-AUTH ", 13) == 0)
877 if (os_strncmp(cmd, "AKA-AUTS ", 9) == 0)
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 87 if (os_strncmp(pos + 9, "OPEN", 4) == 0)
89 else if (os_strncmp(pos + 9, "WPAPSK", 6) == 0)
91 else if (os_strncmp(pos + 9, "WPA2PSK", 7) == 0)
103 if (os_strncmp(pos + 9, "NONE", 4) == 0)
106 else if (os_strncmp(pos + 9, "WEP", 3) == 0)
109 else if (os_strncmp(pos + 9, "TKIP", 4) == 0)
111 else if (os_strncmp(pos + 9, "CCMP", 4) == 0)
200 os_strncmp((const char *) cfg.pin, "nfc-pw", 6) == 0) {
eap_mschapv2.c 411 if (pos && os_strncmp(pos, "E=", 2) == 0) {
421 if (pos && os_strncmp(pos, "R=", 2) == 0) {
431 if (pos && os_strncmp(pos, "C=", 2) == 0) {
459 if (pos && os_strncmp(pos, "V=", 2) == 0) {
469 if (pos && os_strncmp(pos, "M=", 2) == 0) {
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 49 if (os_strncmp(buf, "HTTP/1.1 200 OK", 15) != 0)
53 if (os_strncmp(buf, "NOTIFY ", 7) != 0)
http_client.c 248 if (os_strncmp(url, "http://", 7) != 0)
329 if (os_strncmp(url, "http://", 7) == 0)
332 if (os_strncmp(base, "http://", 7) != 0)
  /external/wpa_supplicant_8/src/ap/
vlan_ioctl.c 97 os_strncmp(if_request.u.device2, if_name,
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.c 638 if (os_strncmp(pos, "be_", 3) == 0) {
641 } else if (os_strncmp(pos, "bk_", 3) == 0) {
644 } else if (os_strncmp(pos, "vi_", 3) == 0) {
647 } else if (os_strncmp(pos, "vo_", 3) == 0) {
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c     [all...]
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_privsep.c 116 os_strncmp(from.sun_path, l2->priv_addr.sun_path,

Completed in 373 milliseconds

1 2 3