Home | History | Annotate | Download | only in src

Lines Matching refs:reallocate

112     void *(*reallocate)(void *pointer, size_t size);
144 global_hooks.reallocate = realloc;
161 global_hooks.reallocate = NULL;
164 global_hooks.reallocate = realloc;
387 if (p->hooks.reallocate != NULL)
389 /* reallocate with realloc if available */
390 newbuffer = (unsigned char*)p->hooks.reallocate(p->buffer, newsize);
394 /* otherwise reallocate manually */
1052 /* check if reallocate is available */
1053 if (hooks->reallocate != NULL)
1055 printed = (unsigned char*) hooks->reallocate(buffer->buffer, buffer->length);