Symbol: CRYPTO_malloc
crypto/openssl/crypto/err/err_local.h
59
else if ((es->err_file[i] = CRYPTO_malloc(strlen(file) + 1,
crypto/openssl/crypto/err/err_local.h
69
else if ((es->err_func[i] = CRYPTO_malloc(strlen(fn) + 1,
crypto/openssl/crypto/err/err_save.c
146
data = CRYPTO_malloc(data_sz, NULL, 0);
crypto/openssl/crypto/mem.c
193
if (malloc_impl != CRYPTO_malloc) {
crypto/openssl/crypto/mem.c
22
static CRYPTO_malloc_fn malloc_impl = CRYPTO_malloc;
crypto/openssl/crypto/mem.c
233
ret = CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/mem.c
253
if (malloc_impl == CRYPTO_malloc) {
crypto/openssl/crypto/mem.c
279
*freeptr = CRYPTO_malloc(num + alignment, file, line);
crypto/openssl/crypto/mem.c
309
return CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/mem.c
326
return CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/mem.c
339
ret = CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/mem_sec.c
161
return CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/mem_sec.c
179
return CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/o_str.c
28
ret = CRYPTO_malloc(strlen(str) + 1, file, line);
crypto/openssl/crypto/o_str.c
44
ret = CRYPTO_malloc(maxlen + 1, file, line);
crypto/openssl/crypto/o_str.c
59
ret = CRYPTO_malloc(siz, file, line);
crypto/openssl/crypto/pem/pem_lib.c
238
: CRYPTO_malloc(num, file, line);
crypto/openssl/crypto/provider_core.c
2292
OSSL_FUNC_CRYPTO_malloc_fn CRYPTO_malloc;
crypto/openssl/crypto/provider_core.c
2645
{ OSSL_FUNC_CRYPTO_MALLOC, (void (*)(void))CRYPTO_malloc },
crypto/openssl/include/openssl/core_dispatch.h
115
CRYPTO_malloc, (size_t num, const char *file, int line))
crypto/openssl/include/openssl/crypto.h
106
CRYPTO_malloc(num, OPENSSL_FILE, OPENSSL_LINE)
crypto/openssl/include/openssl/crypto.h
363
OSSL_CRYPTO_ALLOC void *CRYPTO_malloc(size_t num, const char *file, int line);
crypto/openssl/test/threadstest.c
326
new = CRYPTO_malloc(sizeof(uint64_t), NULL, 0);