Lines Matching refs:stmp
816 BIO *stmp = BIO_new_file(sess_out, "w"); in new_session_cb() local
818 if (stmp == NULL) { in new_session_cb()
821 PEM_write_bio_SSL_SESSION(stmp, sess); in new_session_cb()
822 BIO_free(stmp); in new_session_cb()
1933 BIO *stmp = BIO_new_file(psksessf, "r"); in s_client_main() local
1935 if (stmp == NULL) { in s_client_main()
1940 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); in s_client_main()
1941 BIO_free(stmp); in s_client_main()
2090 BIO *stmp = BIO_new_file(sess_in, "r"); in s_client_main() local
2091 if (stmp == NULL) { in s_client_main()
2096 sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); in s_client_main()
2097 BIO_free(stmp); in s_client_main()