Namespaces |
namespace | debug |
Defines |
#define | calloc(n, size) dg_calloc(n, size, __FILE__, __LINE__) |
#define | malloc(n) dg_malloc(n, __FILE__, __LINE__) |
#define | realloc(p, n) dg_realloc(p, n, __FILE__, __LINE__) |
#define | free(p) dg_free(p, __FILE__, __LINE__) |
#define | dg_NEW new(__FILE__, __LINE__) |
#define | new dg_NEW |
#define | SETUP_LEAK_CHECKER(var) LeakChecker var; |
Functions |
void * | dg_calloc (size_t n, size_t size, const char *file, int line) |
void * | dg_malloc (size_t n, const char *file, int line) |
void * | dg_realloc (void *p, size_t n, const char *file, int line) |
void | dg_free (void *p, const char *file, int line) |
void * | operator new (size_t n) throw ( std ::bad_alloc ) |
void * | operator new[] (size_t n) throw ( std ::bad_alloc ) |
void * | operator new (size_t n, const char *file, int line) throw ( std ::bad_alloc ) |
void * | operator new[] (size_t n, const char *file, int line) throw ( std ::bad_alloc ) |
void | operator delete (void *p) throw () |
void | operator delete[] (void *p) throw () |
void | operator delete (void *p, const char *file, int line) throw () |
void | operator delete[] (void *p, const char *file, int line) throw () |