Searched refs:prof_bt_t (Results 1 - 2 of 2) sorted by relevance

/external/jemalloc/src/
H A Dprof.c47 * Global hash of (prof_bt_t *)-->(prof_ctx_t *). This is the master data
81 bt_init(prof_bt_t *bt, void **vec)
91 bt_destroy(prof_bt_t *bt)
99 static prof_bt_t *
100 bt_dup(prof_bt_t *bt)
102 prof_bt_t *ret;
108 * following the prof_bt_t structure. The backtraces that get
113 ret = (prof_bt_t *)imalloc(QUANTUM_CEILING(sizeof(prof_bt_t)) +
118 QUANTUM_CEILING(sizeof(prof_bt_t)));
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dprof.h4 typedef struct prof_bt_s prof_bt_t; typedef in typeref:struct:prof_bt_s
65 prof_bt_t *bt;
125 prof_bt_t *bt;
160 * Hash of (prof_bt_t *)-->(prof_thr_cnt_t *). Each thread keeps a
221 void bt_init(prof_bt_t *bt, void **vec);
222 void prof_backtrace(prof_bt_t *bt);
223 prof_thr_cnt_t *prof_lookup(prof_bt_t *bt);
248 prof_bt_t bt; \

Completed in 763 milliseconds