/hostap-3.6.0/src/utils/ |
D | wpa_debug_zephyr.c | 79 content = content_buf = os_malloc(3 * len + 1); in _wpa_hexdump() 189 buf = os_malloc(buflen); in wpa_msg_impl() 228 buf = os_malloc(buflen); in wpa_msg_ctrl_impl() 251 buf = os_malloc(buflen); in wpa_msg_global_impl() 279 buf = os_malloc(buflen); in wpa_msg_global_ctrl_impl() 302 buf = os_malloc(buflen); in wpa_msg_no_global_impl() 327 buf = os_malloc(buflen); in wpa_msg_global_only_impl() 363 buf = os_malloc(buflen); in hostapd_logger()
|
D | os_unix.c | 305 buf = os_malloc(len); in os_rel2abs_path() 326 ret = os_malloc(ret_len); in os_rel2abs_path() 440 buf = os_malloc(*len); in os_readfile() 532 void *r = os_malloc(len); in os_memdup() 708 void * os_malloc(size_t size) in os_malloc() function 733 return os_malloc(size); in os_realloc() 743 n = os_malloc(size); in os_realloc() 779 void *ptr = os_malloc(size); in os_zalloc() 791 d = os_malloc(len + 1); in os_strdup()
|
D | wpa_debug.c | 296 strbuf = os_malloc(1 + 3 * slen); in _wpa_hexdump() 331 strbuf = os_malloc(1 + 3 * len); in _wpa_hexdump() 651 buf = os_malloc(buflen); in wpa_msg() 691 buf = os_malloc(buflen); in wpa_msg_ctrl() 716 buf = os_malloc(buflen); in wpa_msg_global() 746 buf = os_malloc(buflen); in wpa_msg_global_ctrl() 771 buf = os_malloc(buflen); in wpa_msg_no_global() 798 buf = os_malloc(buflen); in wpa_msg_global_only() 837 buf = os_malloc(buflen); in hostapd_logger()
|
D | os_internal.c | 163 buf = os_malloc(len); in os_rel2abs_path() 181 ret = os_malloc(ret_len); in os_rel2abs_path() 234 buf = os_malloc(*len); in os_readfile() 260 void *n = os_malloc(size); in os_zalloc() 267 void * os_malloc(size_t size) in os_malloc() function 345 res = os_malloc(len + 1); in os_strdup()
|
D | os.h | 314 void * os_malloc(size_t size); 483 void * os_malloc(size_t size); 488 #ifndef os_malloc 489 #define os_malloc(s) malloc((s)) macro
|
D | base64.c | 42 out = os_malloc(olen); in base64_gen_encode() 113 pos = out = os_malloc(olen); in base64_gen_decode()
|
D | common.c | 465 buf = os_malloc((strlen(str) + 1) * sizeof(TCHAR)); in wpa_strdup_tchar() 669 str = os_malloc(tlen + 1); in wpa_config_parse_string() 685 str = os_malloc(tlen + 1); in wpa_config_parse_string() 772 res = os_malloc(len + 1); in dup_binstr() 855 buf = os_malloc(maxlen); in freq_range_list_str() 1279 val = os_malloc(len + 1); in get_param()
|
/hostap-3.6.0/wlantest/ |
D | bip.c | 27 prot = os_malloc(plen); in bip_protect() 40 buf = os_malloc(plen + 20 - 24); in bip_protect() 80 prot = os_malloc(plen); in bip_gmac_protect() 93 buf = os_malloc(plen + 20 - 24); in bip_gmac_protect()
|
D | ccmp.c | 149 plain = os_malloc(data_len + AES_BLOCK_SIZE); in ccmp_decrypt() 202 crypt = os_malloc(hdrlen + 8 + plen + 8 + AES_BLOCK_SIZE); in ccmp_encrypt() 252 crypt = os_malloc(hdrlen + plen + 8 + AES_BLOCK_SIZE); in ccmp_encrypt_pv1() 291 plain = os_malloc(data_len + AES_BLOCK_SIZE); in ccmp_256_decrypt() 333 crypt = os_malloc(hdrlen + 8 + plen + 16 + AES_BLOCK_SIZE); in ccmp_256_encrypt()
|
D | gcmp.c | 85 plain = os_malloc(data_len + AES_BLOCK_SIZE); in gcmp_decrypt() 127 crypt = os_malloc(hdrlen + 8 + plen + 16 + AES_BLOCK_SIZE); in gcmp_encrypt()
|
/hostap-3.6.0/src/eap_common/ |
D | ikev2_common.c | 403 sign_data = os_malloc(sign_len); in ikev2_derive_auth_data() 495 decrypted = os_malloc(decrypted_len); in ikev2_decrypt_payload() 650 keybuf = os_malloc(keybuf_len); in ikev2_derive_sk_keys() 662 keys->SK_d = os_malloc(keys->SK_d_len); in ikev2_derive_sk_keys() 670 keys->SK_ai = os_malloc(keys->SK_integ_len); in ikev2_derive_sk_keys() 678 keys->SK_ar = os_malloc(keys->SK_integ_len); in ikev2_derive_sk_keys() 686 keys->SK_ei = os_malloc(keys->SK_encr_len); in ikev2_derive_sk_keys() 694 keys->SK_er = os_malloc(keys->SK_encr_len); in ikev2_derive_sk_keys() 702 keys->SK_pi = os_malloc(keys->SK_prf_len); in ikev2_derive_sk_keys() 710 keys->SK_pr = os_malloc(keys->SK_prf_len); in ikev2_derive_sk_keys()
|
D | eap_gpsk_common.c | 141 data = os_malloc(data_len); in eap_gpsk_derive_keys_helper() 299 seed = os_malloc(2 * EAP_GPSK_RAND_LEN + id_server_len + id_peer_len); in eap_gpsk_derive_keys() 372 data = os_malloc(data_len); in eap_gpsk_derive_mid_helper() 443 seed = os_malloc(2 * EAP_GPSK_RAND_LEN + id_server_len + id_peer_len); in eap_gpsk_derive_session_id()
|
D | eap_eke_common.c | 322 id = os_malloc(id_s_len + id_p_len); in eap_eke_derive_key() 454 data = os_malloc(data_len); in eap_eke_derive_ke_ki() 495 data = os_malloc(data_len); in eap_eke_derive_ka() 540 data = os_malloc(data_len); in eap_eke_derive_msk()
|
/hostap-3.6.0/src/tls/ |
D | tlsv1_client_write.c | 76 hello = os_malloc(len); in tls_send_client_hello() 343 csecret = os_malloc(csecret_len); in tlsv1_key_x_dh() 373 dh_yc = os_malloc(dh_yc_len); in tlsv1_key_x_dh() 419 shared = os_malloc(shared_len); in tlsv1_key_x_dh() 872 msg = os_malloc(msglen); in tls_send_client_key_exchange() 910 msg = os_malloc(1000); in tls_send_change_cipher_spec() 950 return os_malloc(1); in tlsv1_client_handshake_write() 969 alert = os_malloc(10); in tlsv1_client_send_alert()
|
D | pkcs5.c | 413 D = os_malloc(v); in pkcs12_key_gen() 421 I = os_malloc(S_len + P_len); in pkcs12_key_gen() 434 B = os_malloc(v); in pkcs12_key_gen() 501 pw = os_malloc(2 * (pw_len + 1)); in pkcs12_crypto_init_sha1() 594 eb = os_malloc(enc_data_len); in pkcs5_decrypt()
|
D | tlsv1_server_write.c | 408 conn->dh_secret = os_malloc(conn->dh_secret_len); in tls_write_server_key_exchange() 442 dh_ys = os_malloc(dh_ys_len); in tls_write_server_key_exchange() 956 msg = os_malloc(msglen); in tls_send_server_hello() 1016 msg = os_malloc(1000); in tls_send_change_cipher_spec() 1065 alert = os_malloc(10); in tlsv1_server_send_alert()
|
/hostap-3.6.0/hs20/client/ |
D | est.c | 130 buf = os_malloc(buflen); in est_load_cacerts() 170 pkcs7 = os_malloc(resp_len); in est_load_cacerts() 518 txt = os_malloc(rlen + 1); in generate_csr() 612 buf = os_malloc(buflen); in est_build_csr() 701 buf = os_malloc(buflen); in est_simple_enroll() 739 pkcs7 = os_malloc(resp_len); in est_simple_enroll()
|
/hostap-3.6.0/src/crypto/ |
D | aes-eax.c | 46 buf = os_malloc(buf_len); in aes_128_eax_encrypt() 110 buf = os_malloc(buf_len); in aes_128_eax_decrypt()
|
D | crypto_nettle.c | 60 ctx = os_malloc(alg->context_size); in nettle_digest_vector() 251 ctx = os_malloc(sizeof(*ctx)); in aes_encrypt_init() 282 ctx = os_malloc(sizeof(*ctx)); in aes_decrypt_init()
|
/hostap-3.6.0/wpa_supplicant/ |
D | ctrl_iface_udp.c | 202 reply = os_malloc(7 + 2 * COOKIE_LEN + 1); 238 buf = os_malloc(CTRL_IFACE_MAX_LEN + 1); 546 sbuf = os_malloc(llen + len); 604 reply = os_malloc(7 + 2 * COOKIE_LEN + 1); 639 buf = os_malloc(CTRL_IFACE_MAX_LEN + 1);
|
/hostap-3.6.0/src/eap_server/ |
D | eap_server_identity.c | 123 buf = os_malloc(len * 4 + 1); in eap_identity_process() 132 sm->identity = os_malloc(len ? len : 1); in eap_identity_process()
|
D | eap_server_tls_common.c | 116 out = os_malloc(len); in eap_server_tls_derive_key() 159 id = os_malloc(*len); in eap_server_tls_derive_session_id() 181 out = os_malloc(*len); in eap_server_tls_derive_session_id()
|
/hostap-3.6.0/src/eap_peer/ |
D | eap_psk.c | 59 data->id_p = os_malloc(identity_len); in eap_psk_init() 147 buf = os_malloc(buflen); in eap_psk_process_1() 229 buf = os_malloc(buflen); in eap_psk_process_3() 445 id = os_malloc(*len); in eap_psk_get_session_id()
|
/hostap-3.6.0/tests/fuzzing/dpp-uri/ |
D | dpp-uri.c | 30 uri = os_malloc(size + 1); in LLVMFuzzerTestOneInput()
|
/hostap-3.6.0/src/radius/ |
D | radius_server.c | 297 buf = os_malloc(buflen); in srv_log() 614 sess->username = os_malloc(user_len * 4 + 1); in radius_server_get_new_session() 682 id_str = os_malloc(id_len + 1); in radius_srv_hs20_t_c_pending() 751 id_str = os_malloc(id_len); in db_update_last_msk() 759 id_str = os_malloc(id_len + 1); in db_update_last_msk() 994 buf = os_malloc(1 + url_len); in radius_server_encapsulate_eap() 1037 buf = os_malloc(1 + url_len + 1); in radius_server_encapsulate_eap() 1086 url2 = os_malloc(url_len + 1); in radius_server_encapsulate_eap() 1672 buf = os_malloc(RADIUS_MAX_MSG_LEN); in radius_server_receive_auth() 1804 buf = os_malloc(RADIUS_MAX_MSG_LEN); in radius_server_receive_acct() [all …]
|