OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BIO_vfree
(Results
1 - 4
of
4
) sorted by null
/system/webservd/webservd/
utils.cc
98
std::unique_ptr<BIO, void(*)(BIO*)>{BIO_new(BIO_s_mem()),
BIO_vfree
};
113
BIO_new_mem_buf(const_cast<uint8_t*>(key.data()), key.size()),
BIO_vfree
};
122
std::unique_ptr<BIO, void(*)(BIO*)>{BIO_new(BIO_s_mem()),
BIO_vfree
};
134
BIO_new_file(file.value().c_str(), "w"),
BIO_vfree
};
141
BIO_new_file(file.value().c_str(), "r"),
BIO_vfree
};
/external/boringssl/src/crypto/test/
scoped_types.h
98
using ScopedBIO = ScopedOpenSSLType<BIO,
BIO_vfree
>;
/external/boringssl/src/crypto/bio/
bio.c
136
void
BIO_vfree
(BIO *bio) {
/external/boringssl/src/include/openssl/
bio.h
92
/*
BIO_vfree
performs the same actions as |BIO_free|, but has a void return
96
OPENSSL_EXPORT void
BIO_vfree
(BIO *bio);
[
all
...]
Completed in 45 milliseconds