Symbol: auxtrace_cache
tools/perf/util/auxtrace.c
2058
struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
tools/perf/util/auxtrace.c
2061
struct auxtrace_cache *c;
tools/perf/util/auxtrace.c
2065
c = zalloc(sizeof(struct auxtrace_cache));
tools/perf/util/auxtrace.c
2091
static void auxtrace_cache__drop(struct auxtrace_cache *c)
tools/perf/util/auxtrace.c
2110
void auxtrace_cache__free(struct auxtrace_cache *c)
tools/perf/util/auxtrace.c
2120
void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c)
tools/perf/util/auxtrace.c
2125
void auxtrace_cache__free_entry(struct auxtrace_cache *c __maybe_unused,
tools/perf/util/auxtrace.c
2131
int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
tools/perf/util/auxtrace.c
2143
static struct auxtrace_cache_entry *auxtrace_cache__rm(struct auxtrace_cache *c,
tools/perf/util/auxtrace.c
2164
void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key)
tools/perf/util/auxtrace.c
2171
void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key)
tools/perf/util/auxtrace.h
455
struct auxtrace_cache;
tools/perf/util/auxtrace.h
558
struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
tools/perf/util/auxtrace.h
560
void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache);
tools/perf/util/auxtrace.h
561
void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c);
tools/perf/util/auxtrace.h
562
void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry);
tools/perf/util/auxtrace.h
563
int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
tools/perf/util/auxtrace.h
565
void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key);
tools/perf/util/auxtrace.h
566
void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key);
tools/perf/util/dso.c
1695
auxtrace_cache__free(RC_CHK_ACCESS(dso)->auxtrace_cache);
tools/perf/util/dso.h
250
struct auxtrace_cache;
tools/perf/util/dso.h
275
struct auxtrace_cache *auxtrace_cache;
tools/perf/util/dso.h
406
static inline struct auxtrace_cache *dso__auxtrace_cache(struct dso *dso)
tools/perf/util/dso.h
408
return RC_CHK_ACCESS(dso)->auxtrace_cache;
tools/perf/util/dso.h
411
static inline void dso__set_auxtrace_cache(struct dso *dso, struct auxtrace_cache *cache)
tools/perf/util/dso.h
413
RC_CHK_ACCESS(dso)->auxtrace_cache = cache;
tools/perf/util/intel-pt.c
597
static struct auxtrace_cache *intel_pt_cache(struct dso *dso,
tools/perf/util/intel-pt.c
600
struct auxtrace_cache *c;
tools/perf/util/intel-pt.c
620
struct auxtrace_cache *c = intel_pt_cache(dso, machine);
tools/perf/util/intel-pt.c
650
struct auxtrace_cache *c = intel_pt_cache(dso, machine);
tools/perf/util/intel-pt.c
661
struct auxtrace_cache *c = intel_pt_cache(dso, machine);