Searched refs:realloc_debug_func (Results 1 – 1 of 1) sorted by relevance
/external/openssl/crypto/ |
D | mem.c | 108 static void (*realloc_debug_func)(void *,void *,int,const char *,int,int) variable 117 static void (*realloc_debug_func)(void *,void *,int,const char *,int,int) variable 192 realloc_debug_func=r; in CRYPTO_set_mem_debug_functions() 245 if (r != NULL) *r=realloc_debug_func; in CRYPTO_get_mem_debug_functions() 344 if (realloc_debug_func != NULL) in CRYPTO_realloc() 345 realloc_debug_func(str, NULL, num, file, line, 0); in CRYPTO_realloc() 350 if (realloc_debug_func != NULL) in CRYPTO_realloc() 351 realloc_debug_func(str, ret, num, file, line, 1); in CRYPTO_realloc() 370 if (realloc_debug_func != NULL) in CRYPTO_realloc_clean() 371 realloc_debug_func(str, NULL, num, file, line, 0); in CRYPTO_realloc_clean() [all …]
|