Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "duktape.h"
Go to the source code of this file.
Functions | |
void * | duk_alloc_logging (void *udata, duk_size_t size) |
void * | duk_realloc_logging (void *udata, void *ptr, duk_size_t size) |
void | duk_free_logging (void *udata, void *ptr) |
void * duk_alloc_logging | ( | void * | udata, |
duk_size_t | size ) |
Definition at line 53 of file duktape-1.5.2/examples/alloc-logging/duk_alloc_logging.c.
References malloc, NULL, alloc_hdr::sz, alloc_hdr::u, write_log(), and write_log().
Referenced by create_duktape_heap(), and create_duktape_heap().
void duk_free_logging | ( | void * | udata, |
void * | ptr ) |
Definition at line 126 of file duktape-1.5.2/examples/alloc-logging/duk_alloc_logging.c.
References free, alloc_hdr::sz, alloc_hdr::u, write_log(), and write_log().
Referenced by create_duktape_heap(), and create_duktape_heap().
void * duk_realloc_logging | ( | void * | udata, |
void * | ptr, | ||
duk_size_t | size ) |
Definition at line 75 of file duktape-1.5.2/examples/alloc-logging/duk_alloc_logging.c.
References free, malloc, NULL, realloc, alloc_hdr::sz, alloc_hdr::u, write_log(), and write_log().
Referenced by create_duktape_heap(), and create_duktape_heap().