Home
last modified time | relevance | path

Searched refs:prof_active (Results 1 – 12 of 12) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
Dprof.h263 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,
361 return (prof_active); in prof_active_get_unlocked()
462 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) in prof_alloc_prep() argument
470 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, in prof_alloc_prep()
498 bool prof_active, bool updated, const void *old_ptr, size_t old_usize, in prof_realloc() argument
506 if (prof_active && !updated && ptr != NULL) { in prof_realloc()
Dprivate_symbols.txt422 prof_active
Dprivate_namespace.h422 #define prof_active JEMALLOC_N(prof_active) macro
Dprivate_unnamespace.h422 #undef prof_active
/external/jemalloc/src/
Djemalloc.c1862 bool prof_active; local
1865 prof_active = prof_active_get_unlocked();
1867 tctx = prof_alloc_prep(tsd, usize, prof_active, true);
1876 prof_realloc(tsd, p, usize, tctx, prof_active, true, old_ptr, old_usize,
2334 bool prof_active; local
2337 prof_active = prof_active_get_unlocked();
2339 tctx = prof_alloc_prep(tsd, *usize, prof_active, false);
2363 prof_realloc(tsd, p, *usize, tctx, prof_active, false, old_ptr,
2480 bool prof_active; local
2483 prof_active = prof_active_get_unlocked();
[all …]
Dprof.c37 bool prof_active; variable
2001 prof_active_current = prof_active; in prof_active_get()
2012 prof_active_old = prof_active; in prof_active_set()
2013 prof_active = active; in prof_active_set()
2199 prof_active = opt_prof_active; in prof_boot2()
Dstats.c746 OPT_WRITE_BOOL_MUTABLE(prof_active, prof.active, ",") in stats_general_print()
Dctl.c150 CTL_PROTO(prof_active)
374 {NAME("active"), CTL(prof_active)},
/external/jemalloc/
DAndroid.bp223 "test/unit/prof_active.c",
DMakefile.in174 $(srcroot)test/unit/prof_active.c \
DChangeLog292 allocation events against concurrent prof_active changes.
/external/jemalloc/test/unit/
Dmallctl.c187 TEST_MALLCTL_OPT(bool, prof_active, prof); in TEST_BEGIN()