Home
last modified time | relevance | path

Searched refs:realloc_ex_func (Results 1 – 1 of 1) sorted by relevance

/external/openssl/crypto/
Dmem.c87 static void *(*realloc_ex_func)(void *, size_t, const char *file, int line) variable
134 realloc_func=r; realloc_ex_func=default_realloc_ex; in CRYPTO_set_mem_functions()
151 realloc_func=0; realloc_ex_func=r; in CRYPTO_set_mem_ex_functions()
205 if (r != NULL) *r = (realloc_ex_func == default_realloc_ex) ? in CRYPTO_get_mem_functions()
217 if (r != NULL) *r = (realloc_ex_func != default_realloc_ex) ? in CRYPTO_get_mem_ex_functions()
218 realloc_ex_func : 0; in CRYPTO_get_mem_ex_functions()
346 ret = realloc_ex_func(str,num,file,line); in CRYPTO_realloc()