Searched refs:prof_active (Results 1 – 12 of 12) sorted by relevance
/external/jemalloc_new/include/jemalloc/internal/ |
D | prof_inlines_b.h | 102 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) { in prof_alloc_prep() argument 109 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, in prof_alloc_prep() 138 bool prof_active, bool updated, const void *old_ptr, size_t old_usize, in prof_realloc() argument 145 if (prof_active && !updated && ptr != NULL) { in prof_realloc()
|
D | prof_inlines_a.h | 80 return prof_active; in prof_active_get_unlocked()
|
D | prof_externs.h | 25 extern bool prof_active;
|
D | private_namespace_jet.h | 286 #define prof_active JEMALLOC_N(prof_active) macro
|
D | private_namespace.h | 283 #define prof_active JEMALLOC_N(prof_active) macro
|
/external/jemalloc_new/src/ |
D | jemalloc.c | 2186 bool prof_active; local 2189 prof_active = prof_active_get_unlocked(); 2191 tctx = prof_alloc_prep(tsd, usize, prof_active, true); 2201 prof_realloc(tsd, p, usize, tctx, prof_active, true, old_ptr, old_usize, 2639 bool prof_active; local 2642 prof_active = prof_active_get_unlocked(); 2644 tctx = prof_alloc_prep(tsd, *usize, prof_active, false); 2668 prof_realloc(tsd, p, *usize, tctx, prof_active, false, old_ptr, 2799 bool prof_active; local 2802 prof_active = prof_active_get_unlocked(); [all …]
|
D | prof.c | 52 bool prof_active; variable 2106 prof_active_current = prof_active; in prof_active_get() 2116 prof_active_old = prof_active; in prof_active_set() 2117 prof_active = active; in prof_active_set() 2300 prof_active = opt_prof_active; in prof_boot2()
|
D | ctl.c | 144 CTL_PROTO(prof_active) 383 {NAME("active"), CTL(prof_active)},
|
/external/jemalloc_new/ |
D | Android.bp | 289 "test/unit/prof_active.c",
|
D | Makefile.in | 190 $(srcroot)test/unit/prof_active.c \
|
D | ChangeLog | 24 - Allow prof_active to control opt.lg_prof_interval and prof.gdump. 666 allocation events against concurrent prof_active changes.
|
/external/jemalloc_new/test/unit/ |
D | mallctl.c | 180 TEST_MALLCTL_OPT(bool, prof_active, prof); in TEST_BEGIN()
|