HomeSort by relevance Sort by last modified time
    Searched refs:s_bio (Results 1 - 3 of 3) sorted by null

  /external/openssl/ssl/
ssl_task.c 266 BIO *s_bio=NULL; local
284 s_bio=BIO_new(BIO_f_ssl());
285 if ((c_bio == NULL) || (s_bio == NULL)) goto err;
289 BIO_set_ssl(s_bio,s_ssl,BIO_CLOSE);
329 i = BIO_read ( s_bio, msg.data, msg.length );
340 i = BIO_write ( s_bio, msg.data, msg.length );
367 if (s_bio != NULL) BIO_free(s_bio);
ssltest.c 1472 BIO *s_bio=NULL; local
    [all...]
  /external/openssl/crypto/threads/
mttest.c 428 BIO *s_bio=NULL; local
456 s_bio=BIO_new(BIO_f_ssl());
457 if ((c_bio == NULL) || (s_bio == NULL)) goto err;
465 BIO_set_ssl(s_bio,s_ssl,(ctx[3] == NULL)?BIO_CLOSE:BIO_NOCLOSE);
479 i=(int)BIO_pending(s_bio);
588 i=BIO_read(s_bio,sbuf,100);
593 if (BIO_should_retry(s_bio))
595 if (BIO_should_read(s_bio))
597 if (BIO_should_write(s_bio))
625 i=BIO_write(s_bio,"hello from server\n",18)
    [all...]

Completed in 549 milliseconds