Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Macros | |
#define | malloc(n) do_not_call_malloc_directly |
#define | calloc(a, b) do_not_use_calloc |
#define | realloc(p, n) do_not_call_realloc_directly |
#define | free(p) do_not_call_free_directly |
#define | strdup(p) do_not_call_strdup_directly |
Functions | |
void * | gw_native_noop (void *ptr) |
void | gw_native_init (void) |
void | gw_native_check_leaks (void) |
void * | gw_native_malloc (size_t size) |
void * | gw_native_calloc (int nmemb, size_t size) |
void * | gw_native_realloc (void *ptr, size_t size) |
void | gw_native_free (void *ptr) |
char * | gw_native_strdup (const char *str) |
void | gw_native_shutdown (void) |
void | gw_check_init_mem (int slow_flag) |
void | gw_check_check_leaks (void) |
void * | gw_check_malloc (size_t size, const char *filename, long line, const char *function) |
void * | gw_check_calloc (int nmemb, size_t size, const char *filename, long line, const char *function) |
void * | gw_check_realloc (void *p, size_t size, const char *filename, long line, const char *function) |
void | gw_check_free (void *p, const char *filename, long line, const char *function) |
char * | gw_check_strdup (const char *str, const char *filename, long line, const char *function) |
int | gw_check_is_allocated (void *p) |
long | gw_check_area_size (void *p) |
void * | gw_check_claim_area (void *p, const char *filename, long line, const char *function) |
void | gw_check_shutdown (void) |
#define calloc | ( | a, | |
b | |||
) | do_not_use_calloc |
Definition at line 192 of file gwmem.h.
Referenced by gw_check_calloc(), gw_native_calloc(), and ws_calloc().
#define realloc | ( | p, | |
n | |||
) | do_not_call_realloc_directly |
Definition at line 193 of file gwmem.h.
Referenced by CodepageAttrvalueName(), DumpNode(), gw_native_realloc(), Read_termstr_rtn(), ReadBinary(), and ws_realloc().
#define strdup | ( | p | ) | do_not_call_strdup_directly |
Definition at line 195 of file gwmem.h.
Referenced by AddStringNode(), CodepageAttrstartName(), CodepageAttrvalueName(), DumpNode(), and parse_options().
long gw_check_area_size | ( | void * | p | ) |
Definition at line 723 of file gwmem-check.c.
References area::area, area::area_size, find_area(), lock(), size, unlock(), and warning().
void* gw_check_calloc | ( | int | nmemb, |
size_t | size, | ||
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 537 of file gwmem-check.c.
References calloc, filename, gw_assert(), initialized, lock(), MARKER_SIZE, panic, record_allocation(), size, and unlock().
void gw_check_check_leaks | ( | void | ) |
Definition at line 679 of file gwmem-check.c.
References allocated, area::area_size, check_marks(), debug(), drop_from_free_ring(), dump_area(), free_ring_len, gw_assert(), highest_num_allocations, highest_total_size, initialized, lock(), num_allocations, total_size, and unlock().
void* gw_check_claim_area | ( | void * | p, |
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 654 of file gwmem-check.c.
References area::area, area::claimer, location::filename, filename, find_area(), location::function, location::lineno, lock(), panic, and unlock().
void gw_check_free | ( | void * | p, |
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 619 of file gwmem-check.c.
References area::area, find_area(), free_area(), gw_assert(), initialized, lock(), panic, and unlock().
void gw_check_init_mem | ( | int | slow_flag | ) |
Definition at line 501 of file gwmem-check.c.
References gwmem_lock, initialized, mutex_init_static, and slow.
int gw_check_is_allocated | ( | void * | p | ) |
Definition at line 713 of file gwmem-check.c.
References area::area, find_area(), lock(), and unlock().
void* gw_check_malloc | ( | size_t | size, |
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 514 of file gwmem-check.c.
References filename, fill(), gw_assert(), initialized, lock(), malloc(), MARKER_SIZE, NEW_AREA_PATTERN, panic, record_allocation(), size, and unlock().
Referenced by gw_check_realloc(), and gw_check_strdup().
void* gw_check_realloc | ( | void * | p, |
size_t | size, | ||
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 561 of file gwmem-check.c.
References area::allocator, area::area, area::area_size, change_total_size(), endmark(), location::filename, filename, fill(), find_area(), free_area(), location::function, gw_assert(), gw_check_malloc(), initialized, location::lineno, lock(), malloc(), MARKER_SIZE, area::max_size, NEW_AREA_PATTERN, panic, area::reallocator, record_allocation(), round_pow2(), size, and unlock().
void gw_check_shutdown | ( | void | ) |
Definition at line 508 of file gwmem-check.c.
References gwmem_lock, initialized, and mutex_destroy().
char* gw_check_strdup | ( | const char * | str, |
const char * | filename, | ||
long | line, | ||
const char * | function | ||
) |
Definition at line 639 of file gwmem-check.c.
References filename, gw_assert(), gw_check_malloc(), initialized, and size.
void* gw_native_calloc | ( | int | nmemb, |
size_t | size | ||
) |
Definition at line 94 of file gwmem-native.c.
References calloc, gw_assert(), panic, and size.
void gw_native_check_leaks | ( | void | ) |
void gw_native_free | ( | void * | ptr | ) |
void gw_native_init | ( | void | ) |
void* gw_native_malloc | ( | size_t | size | ) |
Definition at line 80 of file gwmem-native.c.
References gw_assert(), malloc(), panic, and size.
Referenced by gw_native_strdup().
void* gw_native_noop | ( | void * | ptr | ) |
Definition at line 78 of file gwmem-native.c.
void* gw_native_realloc | ( | void * | ptr, |
size_t | size | ||
) |
Definition at line 109 of file gwmem-native.c.
References gw_assert(), panic, realloc, and size.
void gw_native_shutdown | ( | void | ) |
char* gw_native_strdup | ( | const char * | str | ) |
Definition at line 129 of file gwmem-native.c.
References gw_assert(), gw_native_malloc(), and size.