HomeSort by relevance Sort by last modified time
    Searched defs:dbio (Results 1 - 8 of 8) sorted by null

  /external/openssl/crypto/evp/
bio_md.c 178 BIO *dbio; local
225 dbio=ptr;
226 dctx=dbio->ptr;
bio_enc.c 288 BIO *dbio; local
362 dbio=(BIO *)ptr;
363 dctx=(BIO_ENC_CTX *)dbio->ptr;
367 dbio->init=1;
  /external/openssl/crypto/bio/
bf_buff.c 272 BIO *dbio; local
426 dbio=(BIO *)ptr;
427 if ( !BIO_set_read_buffer_size(dbio,ctx->ibuf_size) ||
428 !BIO_set_write_buffer_size(dbio,ctx->obuf_size))
bf_lbuf.c 268 BIO *dbio; local
358 dbio=(BIO *)ptr;
359 if ( !BIO_set_write_buffer_size(dbio,ctx->obuf_size))
bss_acpt.c 202 BIO *bio=NULL,*dbio; local
272 if ((dbio=BIO_dup_chain(c->bio_chain)) == NULL)
274 if (!BIO_push(dbio,bio)) goto err;
275 bio=dbio;
439 /* dbio=(BIO *)ptr;
441 BIO_set_port(dbio,data->param_port);
443 BIO_set_hostname(dbio,data->param_hostname);
444 BIO_set_nbio(dbio,data->nbio); */
bss_conn.c 454 BIO *dbio; local
571 dbio=(BIO *)ptr;
573 BIO_set_conn_port(dbio,data->param_port);
575 BIO_set_conn_hostname(dbio,data->param_hostname);
576 BIO_set_nbio(dbio,data->nbio);
578 (void)BIO_set_info_callback(dbio,(bio_info_cb *)data->info_callback);
  /external/openssl/crypto/pkcs7/
bio_ber.c 330 BIO *dbio; local
402 dbio=(BIO *)ptr;
403 dctx=(BIO_ENC_CTX *)dbio->ptr;
405 dbio->init=1;
  /external/openssl/ssl/
bio_ssl.c 300 BIO *dbio,*bio; local
445 dbio=(BIO *)ptr;
446 if (((BIO_SSL *)dbio->ptr)->ssl != NULL)
447 SSL_free(((BIO_SSL *)dbio->ptr)->ssl);
448 ((BIO_SSL *)dbio->ptr)->ssl=SSL_dup(ssl);
449 ((BIO_SSL *)dbio->ptr)->renegotiate_count=
451 ((BIO_SSL *)dbio->ptr)->byte_count=
453 ((BIO_SSL *)dbio->ptr)->renegotiate_timeout=
455 ((BIO_SSL *)dbio->ptr)->last_time=
457 ret=(((BIO_SSL *)dbio->ptr)->ssl != NULL)
    [all...]

Completed in 383 milliseconds