Searched refs:malloc_debug_func (Results 1 – 1 of 1) sorted by relevance
/onnv-gate/usr/src/common/openssl/crypto/ |
H A D | mem.c | 106 static void (*malloc_debug_func)(void *,int,const char *,int,int) variable 116 static void (*malloc_debug_func)(void *,int,const char *,int,int) = NULL; variable 189 malloc_debug_func=m; in CRYPTO_set_mem_debug_functions() 242 if (m != NULL) *m=malloc_debug_func; in CRYPTO_get_mem_debug_functions() 258 if (malloc_debug_func != NULL) in CRYPTO_malloc_locked() 261 malloc_debug_func(NULL, num, file, line, 0); in CRYPTO_malloc_locked() 267 if (malloc_debug_func != NULL) in CRYPTO_malloc_locked() 268 malloc_debug_func(ret, num, file, line, 1); in CRYPTO_malloc_locked() 299 if (malloc_debug_func != NULL) in CRYPTO_malloc() 302 malloc_debug_func(NULL, num, file, line, 0); in CRYPTO_malloc() [all …]
|