/external/jemalloc/include/jemalloc/internal/ |
prof.h | 263 extern bool prof_active; 340 prof_tctx_t *prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, 345 prof_tctx_t *tctx, bool prof_active, bool updated, const void *old_ptr, 357 * setting prof_active to false. No locking is used when reading 358 * prof_active in the fast path, so there are no guarantees regarding 361 return (prof_active); 462 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) 470 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, 498 bool prof_active, bool updated, const void *old_ptr, size_t old_usize, 506 if (prof_active && !updated && ptr != NULL) [all...] |
private_namespace.h | 422 #define prof_active JEMALLOC_N(prof_active) macro [all...] |
private_unnamespace.h | 422 #undef prof_active macro
|
/external/jemalloc/src/ |
jemalloc.c | 1280 CONF_HANDLE_BOOL(opt_prof_active, "prof_active", 1862 bool prof_active; local 2334 bool prof_active; local 2480 bool prof_active; local [all...] |
prof.c | 37 bool prof_active; variable [all...] |
stats.c | 746 OPT_WRITE_BOOL_MUTABLE(prof_active, prof.active, ",") [all...] |
ctl.c | 150 CTL_PROTO(prof_active) 286 {NAME("prof_active"), CTL(opt_prof_active)}, 374 {NAME("active"), CTL(prof_active)}, [all...] |
/external/jemalloc/test/unit/ |
mallctl.c | 187 TEST_MALLCTL_OPT(bool, prof_active, prof);
|