Home
last modified time | relevance | path

Searched refs:test_ctx (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/tools/regression/sockets/udp_pingpong/
H A Dudp_pingpong.c81 struct test_ctx { struct
228 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() local
529 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 …]
/freebsd-13.1/tests/sys/file/
H A Dflock_helper.c1415 struct test_ctx { struct
1424 struct test_ctx *tc = tc_in; in test16_func() argument
1448 struct test_ctx tc = { .tc_fd = fd }; in test16()
/freebsd-13.1/crypto/openssl/apps/
H A Dspeed.c2942 EVP_PKEY_CTX *test_ctx = NULL; in speed_main() local
3038 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()