HomeSort by: relevance | last modified time | path
    Searched defs:biom (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/libevent/dist/
openssl-compat.h 13 BIO_METHOD *biom = calloc(1, sizeof(BIO_METHOD)); local
15 if (biom != NULL) {
16 biom->type = type;
17 biom->name = name;
19 return biom;
  /src/external/bsd/ntp/dist/sntp/libevent/
openssl-compat.h 14 BIO_METHOD *biom = calloc(1, sizeof(BIO_METHOD)); local
16 if (biom != NULL) {
17 biom->type = type;
18 biom->name = name;
20 return biom;
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bio_meth.c 39 BIO_METHOD *biom = OPENSSL_zalloc(sizeof(BIO_METHOD)); local
41 if (biom == NULL
42 || (biom->name = OPENSSL_strdup(name)) == NULL) {
43 OPENSSL_free(biom);
46 biom->type = type;
47 return biom;
50 void BIO_meth_free(BIO_METHOD *biom)
52 if (biom != NULL) {
53 OPENSSL_free(biom->name);
54 OPENSSL_free(biom);
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_meth.c 38 BIO_METHOD *biom = OPENSSL_zalloc(sizeof(BIO_METHOD)); local
40 if (biom == NULL
41 || (biom->name = OPENSSL_strdup(name)) == NULL) {
42 OPENSSL_free(biom);
46 biom->type = type;
47 return biom;
50 void BIO_meth_free(BIO_METHOD *biom)
52 if (biom != NULL) {
53 OPENSSL_free(biom->name);
54 OPENSSL_free(biom);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
bio_meth.c 38 BIO_METHOD *biom = OPENSSL_zalloc(sizeof(BIO_METHOD)); local
40 if (biom == NULL
41 || (biom->name = OPENSSL_strdup(name)) == NULL) {
42 OPENSSL_free(biom);
46 biom->type = type;
47 return biom;
50 void BIO_meth_free(BIO_METHOD *biom)
52 if (biom != NULL) {
53 OPENSSL_free(biom->name);
54 OPENSSL_free(biom);
    [all...]

Completed in 26 milliseconds