Searched refs:sfd (Results 1 – 5 of 5) sorted by relevance
/openssl-master/engines/ |
A D | e_afalg.c | 287 cb->aio_fildes = sfd; in afalg_fin_cipher_aio() 424 actx->bfd = actx->sfd = -1; in afalg_create_sk() 445 actx->sfd = accept(actx->bfd, NULL, 0); in afalg_create_sk() 446 if (actx->sfd < 0) { in afalg_create_sk() 457 if (actx->sfd >= 0) in afalg_create_sk() 458 close(actx->sfd); in afalg_create_sk() 459 actx->bfd = actx->sfd = -1; in afalg_create_sk() 508 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 535 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 619 close(actx->sfd); in afalg_cipher_init() [all …]
|
A D | e_afalg.h | 86 int sfd; member
|
/openssl-master/test/helpers/ |
A D | ssltestlib.h | 24 SSL **cssl, int sfd, int cfd); 25 int create_test_sockets(int *cfd, int *sfd);
|
A D | ssltestlib.c | 783 int afd = -1, cfd = -1, sfd = -1; in create_test_sockets() local 809 while (sfd == -1 || !cfd_connected) { in create_test_sockets() 810 sfd = accept(afd, NULL, 0); in create_test_sockets() 811 if (sfd == -1 && errno != EAGAIN) in create_test_sockets() 820 if (set_nb(cfd) == -1 || set_nb(sfd) == -1) in create_test_sockets() 824 *sfdp = sfd; in create_test_sockets() 830 if (sfd != -1) in create_test_sockets() 831 close(sfd); in create_test_sockets() 839 SSL **cssl, int sfd, int cfd) in create_ssl_objects2() argument 853 if (!TEST_ptr(s_to_c_bio = BIO_new_socket(sfd, BIO_NOCLOSE)) in create_ssl_objects2()
|
/openssl-master/test/ |
A D | sslapitest.c | 1149 int cfd = -1, sfd = -1; in execute_test_ktls() local 1152 if (!TEST_true(create_test_sockets(&cfd, &sfd))) in execute_test_ktls() 1184 &clientssl, sfd, cfd))) in execute_test_ktls() 1267 if (sfd != -1) in execute_test_ktls() 1268 close(sfd); in execute_test_ktls() 1282 int cfd = -1, sfd = -1, ffd, err; in execute_test_ktls_sendfile() local 1291 || !TEST_true(create_test_sockets(&cfd, &sfd))) in execute_test_ktls_sendfile() 1295 if (!ktls_chk_platform(sfd)) { in execute_test_ktls_sendfile() 1323 &clientssl, sfd, cfd))) in execute_test_ktls_sendfile() 1400 if (sfd != -1) in execute_test_ktls_sendfile() [all …]
|
Completed in 22 milliseconds