Home
last modified time | relevance | path

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

/external/libexif/libexif/
Dexif-mem.c8 ExifMemReallocFunc realloc_func; member
34 exif_mem_new (ExifMemAllocFunc alloc_func, ExifMemReallocFunc realloc_func, in exif_mem_new() argument
39 if (!alloc_func && !realloc_func) in exif_mem_new()
42 realloc_func (NULL, sizeof (ExifMem)); in exif_mem_new()
47 mem->realloc_func = realloc_func; in exif_mem_new()
82 if (mem->alloc_func || mem->realloc_func) in exif_mem_alloc()
84 mem->realloc_func (NULL, ds); in exif_mem_alloc()
91 return (mem && mem->realloc_func) ? mem->realloc_func (d, ds) : NULL; in exif_mem_realloc()