Searched refs:malloc_debug_func (Results 1 – 1 of 1) sorted by relevance
| /freebsd-10-stable/crypto/openssl/crypto/ |
| D | mem.c | 112 static void (*malloc_debug_func) (void *, int, const char *, int, int) variable 125 static void (*malloc_debug_func) (void *, int, const char *, int, int) = NULL; variable 208 malloc_debug_func = m; in CRYPTO_set_mem_debug_functions() 269 *m = malloc_debug_func; in CRYPTO_get_mem_debug_functions() 289 if (malloc_debug_func != NULL) { in CRYPTO_malloc_locked() 292 malloc_debug_func(NULL, num, file, line, 0); in CRYPTO_malloc_locked() 298 if (malloc_debug_func != NULL) in CRYPTO_malloc_locked() 299 malloc_debug_func(ret, num, file, line, 1); in CRYPTO_malloc_locked() 337 if (malloc_debug_func != NULL) { in CRYPTO_malloc() 340 malloc_debug_func(NULL, num, file, line, 0); in CRYPTO_malloc() [all …]
|