Home | History | Annotate | Download | only in test

Lines Matching full:session

89   ScopedSSL_SESSION session;
310 if (async_state->session) {
312 return async_state->session.release();
419 // Disable the internal session cache. To test asynchronous session lookup,
420 // we use an external session cache.
498 test_state->session = std::move(test_state->pending_session);
535 // true and sets |*out_session| to the negotiated SSL session. If the test is a
536 // resumption attempt, |is_resume| is true and |session| is the session from the
540 SSL_SESSION *session) {
689 if (session != NULL) {
691 if (SSL_set_session(ssl.get(), session) != 1) {
695 // The internal session cache is disabled, so install the session
698 SSL_SESSION_up_ref(session));
733 fprintf(stderr, "session was%s reused\n",
813 if (!ssl->session->extended_master_secret) {
814 fprintf(stderr, "No EMS for session when expected");
996 ScopedSSL_SESSION session;
997 if (!DoExchange(&session, ssl_ctx.get(), &config, false /* is_resume */,
998 NULL /* session */)) {
1005 session.get())) {