Home
last modified time | relevance | path

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

/freebsd-12-stable/usr.bin/sed/
Dcompile.c426 int hexlen; in compile_delimited() local
463 if (dohex(&p[2], d, &hexlen)) { in compile_delimited()
465 p += hexlen + 2; in compile_delimited()
487 int c, d, hexlen; in compile_ccl() local
516 if (dohex(&s[2], t, &hexlen)) in compile_ccl()
517 s += hexlen + 1; in compile_ccl()
559 int asize, hexlen, size; in compile_subst() local
633 if (dohex(&p[1], p, &hexlen)) { in compile_subst()
635 hexlen); in compile_subst()
/freebsd-12-stable/contrib/wpa/wpa_supplicant/
Ddpp_supplicant.c1481 size_t hexlen; in wpas_dpp_handle_config_obj() local
1483 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in wpas_dpp_handle_config_obj()
1484 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1486 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1496 size_t hexlen; in wpas_dpp_handle_config_obj() local
1498 hexlen = 2 * wpabuf_len(conf->pp_key) + 1; in wpas_dpp_handle_config_obj()
1499 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1501 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1510 size_t hexlen; in wpas_dpp_handle_config_obj() local
1512 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in wpas_dpp_handle_config_obj()
[all …]
Dwpas_glue.c1244 size_t hexlen; in wpa_supplicant_fils_hlp_rx() local
1246 hexlen = pkt_len * 2 + 1; in wpa_supplicant_fils_hlp_rx()
1247 hex = os_malloc(hexlen); in wpa_supplicant_fils_hlp_rx()
1250 wpa_snprintf_hex(hex, hexlen, pkt, pkt_len); in wpa_supplicant_fils_hlp_rx()
/freebsd-12-stable/contrib/wpa/src/ap/
Ddpp_hostapd.c840 size_t hexlen; in hostapd_dpp_handle_config_obj() local
842 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in hostapd_dpp_handle_config_obj()
843 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
845 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
855 size_t hexlen; in hostapd_dpp_handle_config_obj() local
857 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in hostapd_dpp_handle_config_obj()
858 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
860 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
/freebsd-12-stable/sbin/sysctl/
Dsysctl.c946 int i, hexlen, sign, ctltype; in show_var() local
1105 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in show_var()
1142 printf("%#0*jx", hexlen, umv); in show_var()