Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 9 of 9) sorted by relevance

/hostap-latest/src/drivers/
Ddriver_roboswitch.c210 char *sep; in wpa_driver_roboswitch_set_param() local
213 sep = drv->ifname + os_strlen(drv->ifname); in wpa_driver_roboswitch_set_param()
214 *sep = '.'; in wpa_driver_roboswitch_set_param()
223 *sep = '\0'; in wpa_driver_roboswitch_set_param()
360 char *sep; in wpa_driver_roboswitch_init() local
369 sep = drv->ifname + in wpa_driver_roboswitch_init()
372 while (sep > drv->ifname && *sep != '.') sep--; in wpa_driver_roboswitch_init()
373 if (sep <= drv->ifname) { in wpa_driver_roboswitch_init()
379 *sep = '\0'; in wpa_driver_roboswitch_init()
380 while (*++sep) { in wpa_driver_roboswitch_init()
[all …]
/hostap-latest/src/utils/
Dext_password_file.c101 char *sep = os_strchr(pos, '='); in ext_password_file_get() local
103 if (!sep) { in ext_password_file_get()
109 if (!sep[1]) { in ext_password_file_get()
115 if (os_strncmp(name, pos, sep - pos) != 0) in ext_password_file_get()
118 password = wpabuf_alloc_copy(sep + 1, os_strlen(sep + 1)); in ext_password_file_get()
Dcommon.c294 char sep) in wpa_snprintf_hex_sep() argument
305 data[i], sep); in wpa_snprintf_hex_sep()
Dcommon.h531 char sep);
/hostap-latest/src/ap/
Dtaxonomy.c125 char *sep = (num++ == 0) ? "" : ","; in ie_to_string() local
152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string()
219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id); in ie_to_string()
/hostap-latest/wpa_supplicant/
Dinterworking.c824 const char *sep, *msin; in build_root_nai() local
839 sep = os_strchr(imsi, '-'); in build_root_nai()
840 if (sep) { in build_root_nai()
841 plmn_len = sep - imsi; in build_root_nai()
842 msin = sep + 1; in build_root_nai()
2026 char *sep; in interworking_credentials_available_3gpp() local
2054 sep = os_strchr(cred->imsi, '-'); in interworking_credentials_available_3gpp()
2055 if (sep == NULL || in interworking_credentials_available_3gpp()
2056 (sep - cred->imsi != 5 && sep - cred->imsi != 6)) in interworking_credentials_available_3gpp()
2058 mnc_len = sep - cred->imsi - 3; in interworking_credentials_available_3gpp()
[all …]
/hostap-latest/wpa_supplicant/dbus/
Ddbus_new_helpers.h148 char * wpas_dbus_new_decompose_object_path(const char *path, const char *sep,
Ddbus_new_helpers.c972 char * wpas_dbus_new_decompose_object_path(const char *path, const char *sep, in wpas_dbus_new_decompose_object_path() argument
1004 sep_len = os_strlen(sep); in wpas_dbus_new_decompose_object_path()
1005 if (os_strncmp(pos, sep, sep_len) != 0 || pos[sep_len] != '/') in wpas_dbus_new_decompose_object_path()
/hostap-latest/hostapd/
Dconfig_file.c1323 char *sep, *str = NULL; in parse_lang_string() local
1335 sep = os_strchr(pos, ':'); in parse_lang_string()
1336 if (sep == NULL) in parse_lang_string()
1338 *sep++ = '\0'; in parse_lang_string()
1343 nlen = os_strlen(sep); in parse_lang_string()
1359 os_memcpy(ls->name, sep, nlen); in parse_lang_string()
1383 char *sep; in parse_venue_url() local
1388 sep = os_strchr(pos, ':'); in parse_venue_url()
1389 if (!sep) in parse_venue_url()
1391 *sep++ = '\0'; in parse_venue_url()
[all …]