/external/jemalloc/include/jemalloc/internal/ |
prof.h | 263 extern bool prof_active; 334 prof_tctx_t *prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, 344 prof_tctx_t *tctx, bool prof_active, bool updated, const void *old_ptr, 356 * setting prof_active to false. No locking is used when reading 357 * prof_active in the fast path, so there are no guarantees regarding 360 return (prof_active); 461 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) 469 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, 497 bool prof_active, bool updated, const void *old_ptr, size_t old_usize, 505 if (prof_active && !updated && ptr != NULL) [all...] |
/external/jemalloc/src/ |
jemalloc.c | 1163 CONF_HANDLE_BOOL(opt_prof_active, "prof_active", 1793 bool prof_active; local 2225 bool prof_active; local 2368 bool prof_active; local [all...] |
prof.c | 37 bool prof_active; variable [all...] |
stats.c | 523 OPT_WRITE_BOOL_MUTABLE(prof_active, prof.active)
|
ctl.c | 149 CTL_PROTO(prof_active) 283 {NAME("prof_active"), CTL(opt_prof_active)}, 370 {NAME("active"), CTL(prof_active)}, [all...] |
/external/jemalloc/ |
Android.mk | 226 test/unit/prof_active.c \
|
/external/jemalloc/test/unit/ |
mallctl.c | 181 TEST_MALLCTL_OPT(bool, prof_active, prof);
|