Home
last modified time | relevance | path

Searched refs:prof_active (Results 1 – 24 of 24) 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_new/include/jemalloc/internal/
Dprof_inlines_b.h102 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()
Dprof_inlines_a.h80 return prof_active; in prof_active_get_unlocked()
Dprof_externs.h25 extern bool prof_active;
Dprivate_namespace_jet.h286 #define prof_active JEMALLOC_N(prof_active) macro
Dprivate_namespace.h283 #define prof_active JEMALLOC_N(prof_active) macro
/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_new/src/
Djemalloc.c2186 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 …]
Dprof.c52 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()
Dctl.c144 CTL_PROTO(prof_active)
383 {NAME("active"), CTL(prof_active)},
/external/jemalloc/
DAndroid.bp242 "test/unit/prof_active.c",
DMakefile.in174 $(srcroot)test/unit/prof_active.c \
DChangeLog292 allocation events against concurrent prof_active changes.
/external/jemalloc_new/
DAndroid.bp249 "test/unit/prof_active.c",
DMakefile.in190 $(srcroot)test/unit/prof_active.c \
DChangeLog24 - Allow prof_active to control opt.lg_prof_interval and prof.gdump.
666 allocation events against concurrent prof_active changes.
/external/jemalloc/test/unit/
Dmallctl.c187 TEST_MALLCTL_OPT(bool, prof_active, prof); in TEST_BEGIN()
/external/jemalloc_new/test/unit/
Dmallctl.c180 TEST_MALLCTL_OPT(bool, prof_active, prof); in TEST_BEGIN()