Lines Matching refs:new_list
1137 int *new_list; in devcrypto_ctrl() local
1168 new_list=OPENSSL_zalloc(sizeof(selected_ciphers)); in devcrypto_ctrl()
1169 if (!CONF_parse_list(p, ',', 1, cryptodev_select_cipher_cb, new_list)) { in devcrypto_ctrl()
1170 OPENSSL_free(new_list); in devcrypto_ctrl()
1173 memcpy(selected_ciphers, new_list, sizeof(selected_ciphers)); in devcrypto_ctrl()
1174 OPENSSL_free(new_list); in devcrypto_ctrl()
1188 new_list=OPENSSL_zalloc(sizeof(selected_digests)); in devcrypto_ctrl()
1189 if (!CONF_parse_list(p, ',', 1, cryptodev_select_digest_cb, new_list)) { in devcrypto_ctrl()
1190 OPENSSL_free(new_list); in devcrypto_ctrl()
1193 memcpy(selected_digests, new_list, sizeof(selected_digests)); in devcrypto_ctrl()
1194 OPENSSL_free(new_list); in devcrypto_ctrl()