Lines Matching refs:new_list
1136 int *new_list; in devcrypto_ctrl() local
1167 new_list=OPENSSL_zalloc(sizeof(selected_ciphers)); in devcrypto_ctrl()
1168 if (!CONF_parse_list(p, ',', 1, cryptodev_select_cipher_cb, new_list)) { in devcrypto_ctrl()
1169 OPENSSL_free(new_list); in devcrypto_ctrl()
1172 memcpy(selected_ciphers, new_list, sizeof(selected_ciphers)); in devcrypto_ctrl()
1173 OPENSSL_free(new_list); in devcrypto_ctrl()
1187 new_list=OPENSSL_zalloc(sizeof(selected_digests)); in devcrypto_ctrl()
1188 if (!CONF_parse_list(p, ',', 1, cryptodev_select_digest_cb, new_list)) { in devcrypto_ctrl()
1189 OPENSSL_free(new_list); in devcrypto_ctrl()
1192 memcpy(selected_digests, new_list, sizeof(selected_digests)); in devcrypto_ctrl()
1193 OPENSSL_free(new_list); in devcrypto_ctrl()