Searched refs:OPENSSL_malloc (Results 176 - 200 of 247) sorted by relevance

12345678910

/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Ddsaparam.c361 data=(unsigned char *)OPENSSL_malloc(len+20);
364 perror("OPENSSL_malloc");
H A Drsa.c391 if ((p=(unsigned char *)OPENSSL_malloc(size)) == NULL)
H A Ds_client.c465 if ( ((cbuf=OPENSSL_malloc(BUFSIZZ)) == NULL) ||
466 ((sbuf=OPENSSL_malloc(BUFSIZZ)) == NULL) ||
467 ((mbuf=OPENSSL_malloc(BUFSIZZ)) == NULL))
H A Dpkeyutl.c347 buf_out = OPENSSL_malloc(buf_outlen);
H A Ds_server.c539 wbuf = (EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + 1024);
591 wbuf=(EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + num);
1775 if ((buf=OPENSSL_malloc(bufsize)) == NULL)
2262 buf=OPENSSL_malloc(bufsize);
H A Ds_socket.c451 if ((*host=(char *)OPENSSL_malloc(strlen(h1->h_name)+1)) == NULL)
453 perror("OPENSSL_malloc");
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dameth_lib.c290 ameth = OPENSSL_malloc(sizeof(EVP_PKEY_ASN1_METHOD));
H A Da_strex.c281 der_buf = OPENSSL_malloc(der_len);
H A Dt_x509.c254 if ((der = dertmp = (unsigned char *)OPENSSL_malloc (derlen)) == NULL)
H A Dtasn_prn.c88 ret = OPENSSL_malloc(sizeof(ASN1_PCTX));
H A Dx_crl.c496 m = OPENSSL_malloc(sizeof(X509_CRL_METHOD));
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbss_acpt.c153 if ((ret=(BIO_ACCEPT *)OPENSSL_malloc(sizeof(BIO_ACCEPT))) == NULL)
H A Dbss_conn.c329 if ((ret=(BIO_CONNECT *)OPENSSL_malloc(sizeof(BIO_CONNECT))) == NULL)
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Dcrypto.h368 #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__) macro
H A Dmem.c399 a=(char *)OPENSSL_malloc(num);
/barrelfish-master/lib/openssl-1.0.0d/crypto/ec/
H A Deck_prn.c265 if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
H A Dec_key.c73 ret=(EC_KEY *)OPENSSL_malloc(sizeof(EC_KEY));
/barrelfish-master/lib/openssl-1.0.0d/crypto/engine/
H A Deng_dyn.c189 c = OPENSSL_malloc(sizeof(dynamic_data_ctx));
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Dbio_enc.c112 ctx=(BIO_ENC_CTX *)OPENSSL_malloc(sizeof(BIO_ENC_CTX));
H A Dp_lib.c186 ret=(EVP_PKEY *)OPENSSL_malloc(sizeof(EVP_PKEY));
/barrelfish-master/lib/openssl-1.0.0d/crypto/pkcs7/
H A Dbio_ber.c131 ctx=(BIO_BER_CTX *)OPENSSL_malloc(sizeof(BIO_BER_CTX));
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dd1_lib.c99 if ((d1=OPENSSL_malloc(sizeof *d1)) == NULL) return (0);
H A Dd1_both.c180 frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
186 buf = (unsigned char *)OPENSSL_malloc(frag_len);
200 bitmask = (unsigned char *)OPENSSL_malloc(RSMBLY_BITMASK_SIZE(frag_len));
/barrelfish-master/include/openssl/
H A Dcrypto.h368 #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__) macro
/barrelfish-master/lib/openssl-1.0.0d/crypto/dh/
H A Ddh_ameth.c356 m= OPENSSL_malloc(buf_len+10);

Completed in 185 milliseconds

12345678910