Searched defs:malloc_function (Results 1 - 1 of 1) sorted by relevance

/bind-9.11.3/lib/lwres/
H A Dcontext.c21 allocation, it will call malloc_function to allocate memory and
22 free_function to free it. If malloc_function and free_function are
24 permitted to have a NULL malloc_function and a non-NULL free_function
26 allocation functions. If malloc_function and free_function are NULL,
143 lwres_malloc_t malloc_function,
155 if (malloc_function == NULL || free_function == NULL) {
156 REQUIRE(malloc_function == NULL);
158 malloc_function = lwres_malloc;
162 ctx = malloc_function(arg, sizeof(lwres_context_t));
169 ctx->malloc = malloc_function;
142 lwres_context_create(lwres_context_t **contextp, void *arg, lwres_malloc_t malloc_function, lwres_free_t free_function, unsigned int flags) argument
[all...]

Completed in 16 milliseconds