Searched refs:test_ctx (Results 1 – 3 of 3) sorted by relevance
81 struct test_ctx { struct228 setup_udp(struct test_ctx *tcp) in setup_udp()273 setup_udp6(struct test_ctx *tcp) in setup_udp6()523 struct test_ctx test_ctx; in test_run() local529 bzero(&test_ctx, sizeof(test_ctx)); in test_run()530 test_ctx.name = name; in test_run()534 setup_udp(&test_ctx); in test_run()536 setup_udp6(&test_ctx); in test_run()553 test_server(&test_ctx); in test_run()574 test_ctx.nrecvd, test_ctx.nsent, MIN_NRECV); in test_run()[all …]
1415 struct test_ctx { struct1424 struct test_ctx *tc = tc_in; in test16_func() argument1448 struct test_ctx tc = { .tc_fd = fd }; in test16()
2942 EVP_PKEY_CTX *test_ctx = NULL; in speed_main() local3038 if (!(test_ctx = EVP_PKEY_CTX_new(key_B, NULL)) || /* test ctx from skeyB */ in speed_main()3039 !EVP_PKEY_derive_init(test_ctx) || /* init derivation test_ctx */ in speed_main()3040 !EVP_PKEY_derive_set_peer(test_ctx, key_A) || /* set peer pubkey in test_ctx */ in speed_main()3041 !EVP_PKEY_derive(test_ctx, NULL, &test_outlen) || /* determine max length */ in speed_main()3043 !EVP_PKEY_derive(test_ctx, loopargs[i].secret_b, &test_outlen) || /* compute b*A */ in speed_main()3069 EVP_PKEY_CTX_free(test_ctx); in speed_main()3070 test_ctx = NULL; in speed_main()