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

  /external/openssl/crypto/bio/
bss_conn.c 99 } BIO_CONNECT;
109 static int conn_state(BIO *b, BIO_CONNECT *c);
111 BIO_CONNECT *BIO_CONNECT_new(void );
112 void BIO_CONNECT_free(BIO_CONNECT *a);
128 static int conn_state(BIO *b, BIO_CONNECT *c)
321 BIO_CONNECT *BIO_CONNECT_new(void)
323 BIO_CONNECT *ret;
325 if ((ret=(BIO_CONNECT *)OPENSSL_malloc(sizeof(BIO_CONNECT))) == NULL)
341 void BIO_CONNECT_free(BIO_CONNECT *a
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bio/
connect.c 103 } BIO_CONNECT;
119 static int conn_state(BIO *bio, BIO_CONNECT *c) {
260 static BIO_CONNECT *BIO_CONNECT_new(void) {
261 BIO_CONNECT *ret = OPENSSL_malloc(sizeof(BIO_CONNECT));
266 memset(ret, 0, sizeof(BIO_CONNECT));
272 static void BIO_CONNECT_free(BIO_CONNECT *c) {
295 BIO_CONNECT *c = (BIO_CONNECT *) bio->ptr;
318 BIO_CONNECT_free((BIO_CONNECT*) bio->ptr)
    [all...]

Completed in 185 milliseconds