Home
last modified time | relevance | path

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

/libuv/src/
H A Duv-common.c48 static uv__allocator_t uv__allocator = { variable
77 return uv__allocator.local_malloc(size); in uv__malloc()
88 uv__allocator.local_free(ptr); in uv__free()
93 return uv__allocator.local_calloc(count, size); in uv__calloc()
98 return uv__allocator.local_realloc(ptr, size); in uv__realloc()
123 uv__allocator.local_malloc = malloc_func; in uv_replace_allocator()
124 uv__allocator.local_realloc = realloc_func; in uv_replace_allocator()
125 uv__allocator.local_calloc = calloc_func; in uv_replace_allocator()
126 uv__allocator.local_free = free_func; in uv_replace_allocator()

Completed in 5 milliseconds