/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_stats.cpp | 107 void FillMallocStatistics(AsanMallocStats *malloc_stats) { in FillMallocStatistics() argument 110 malloc_stats->blocks_in_use = stats.mallocs; in FillMallocStatistics() 111 malloc_stats->size_in_use = stats.malloced; in FillMallocStatistics() 112 malloc_stats->max_size_in_use = max_malloced_memory; in FillMallocStatistics() 113 malloc_stats->size_allocated = stats.mmaped; in FillMallocStatistics()
|
D | asan_malloc_mac.cpp | 53 AsanMallocStats malloc_stats; \ 54 FillMallocStatistics(&malloc_stats); \ 56 internal_memcpy(stats, &malloc_stats, sizeof(malloc_statistics_t));
|
D | asan_stats.h | 67 void FillMallocStatistics(AsanMallocStats *malloc_stats);
|
D | asan_malloc_linux.cpp | 242 INTERCEPTOR(void, malloc_stats, void) { in INTERCEPTOR() argument
|
/external/compiler-rt/lib/asan/ |
D | asan_stats.cc | 108 void FillMallocStatistics(AsanMallocStats *malloc_stats) { in FillMallocStatistics() argument 111 malloc_stats->blocks_in_use = stats.mallocs; in FillMallocStatistics() 112 malloc_stats->size_in_use = stats.malloced; in FillMallocStatistics() 113 malloc_stats->max_size_in_use = max_malloced_memory; in FillMallocStatistics() 114 malloc_stats->size_allocated = stats.mmaped; in FillMallocStatistics()
|
D | asan_malloc_mac.cc | 50 AsanMallocStats malloc_stats; \ 51 FillMallocStatistics(&malloc_stats); \ 53 internal_memcpy(stats, &malloc_stats, sizeof(malloc_statistics_t));
|
D | asan_stats.h | 68 void FillMallocStatistics(AsanMallocStats *malloc_stats);
|
D | asan_malloc_linux.cc | 145 INTERCEPTOR(void, malloc_stats, void) { in INTERCEPTOR() argument
|
/external/bcc/tests/python/ |
D | test_uprobes.py | 37 libc.malloc_stats.restype = None 38 libc.malloc_stats.argtypes = [] 39 libc.malloc_stats()
|
/external/bcc/tests/lua/ |
D | test_uprobes.lua | 35 ffi.C.malloc_stats()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | standalone_malloc_test.cc | 85 malloc_stats(); in standalone_malloc_test()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | standalone_malloc_test.cpp | 85 malloc_stats(); in standalone_malloc_test()
|
/external/python/cpython3/Include/cpython/ |
D | initconfig.h | 161 int malloc_stats; /* PYTHONMALLOCSTATS */ member
|
/external/dlmalloc/ |
D | malloc.h | 63 #define dlmalloc_stats malloc_stats
|
D | malloc.c | 828 #define dlmalloc_stats malloc_stats
|
/external/llvm-project/compiler-rt/lib/memprof/ |
D | memprof_malloc_linux.cpp | 222 INTERCEPTOR(void, malloc_stats, void) { __memprof_print_accumulated_stats(); } in INTERCEPTOR() argument
|
/external/llvm-project/compiler-rt/lib/hwasan/ |
D | hwasan_interceptors.cpp | 203 INTERCEPTOR_ALIAS(void, malloc_stats, void);
|
/external/python/cpython3/Python/ |
D | pylifecycle.c | 1384 int malloc_stats = tstate->interp->config.malloc_stats; in Py_FinalizeEx() local 1501 if (malloc_stats) { in Py_FinalizeEx()
|
D | initconfig.c | 814 COPY_ATTR(malloc_stats); in _PyConfig_Copy() 920 SET_ITEM_INT(malloc_stats); in config_as_dict() 1339 config->malloc_stats = 1; in config_read_env_vars()
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 278 INTERCEPTOR(void, malloc_stats, void) { in INTERCEPTOR() argument 281 #define MSAN_MAYBE_INTERCEPT_MALLOC_STATS INTERCEPT_FUNCTION(malloc_stats)
|
/external/llvm-project/compiler-rt/lib/msan/ |
D | msan_interceptors.cpp | 277 INTERCEPTOR(void, malloc_stats, void) { in INTERCEPTOR() argument 280 #define MSAN_MAYBE_INTERCEPT_MALLOC_STATS INTERCEPT_FUNCTION(malloc_stats)
|
/external/python/cpython3/Programs/ |
D | _testembed.c | 512 config.malloc_stats = 1; in test_init_from_config()
|
/external/python/cpython3/Doc/c-api/ |
D | init_config.rst | 558 .. c:member:: int malloc_stats
|
/external/python/cpython2/Modules/_ctypes/libffi/src/ |
D | dlmalloc.c | 668 #define dlmalloc_stats malloc_stats
|
/external/libffi/src/ |
D | dlmalloc.c | 668 #define dlmalloc_stats malloc_stats
|