Searched refs:auxtrace_cache (Results 1 – 5 of 5) sorted by relevance
/linux-6.12.1/tools/perf/util/ |
D | auxtrace.h | 459 struct auxtrace_cache; 563 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, 565 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache); 566 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c); 567 void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry); 568 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, 570 void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key); 571 void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key); 835 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused) in auxtrace_cache__free()
|
D | dso.h | 169 struct auxtrace_cache; 197 struct auxtrace_cache *auxtrace_cache; in DECLARE_RC_STRUCT() local 293 static inline struct auxtrace_cache *dso__auxtrace_cache(struct dso *dso) in dso__auxtrace_cache() 295 return RC_CHK_ACCESS(dso)->auxtrace_cache; in dso__auxtrace_cache() 298 static inline void dso__set_auxtrace_cache(struct dso *dso, struct auxtrace_cache *cache) in dso__set_auxtrace_cache() 300 RC_CHK_ACCESS(dso)->auxtrace_cache = cache; in dso__set_auxtrace_cache()
|
D | auxtrace.c | 1968 struct auxtrace_cache { struct 1977 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, in auxtrace_cache__new() argument 1980 struct auxtrace_cache *c; in auxtrace_cache__new() 1984 c = zalloc(sizeof(struct auxtrace_cache)); in auxtrace_cache__new() 2010 static void auxtrace_cache__drop(struct auxtrace_cache *c) in auxtrace_cache__drop() 2029 void auxtrace_cache__free(struct auxtrace_cache *c) in auxtrace_cache__free() 2039 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c) in auxtrace_cache__alloc_entry() 2044 void auxtrace_cache__free_entry(struct auxtrace_cache *c __maybe_unused, in auxtrace_cache__free_entry() 2050 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, in auxtrace_cache__add() 2062 static struct auxtrace_cache_entry *auxtrace_cache__rm(struct auxtrace_cache *c, in auxtrace_cache__rm() [all …]
|
D | intel-pt.c | 595 static struct auxtrace_cache *intel_pt_cache(struct dso *dso, in intel_pt_cache() 598 struct auxtrace_cache *c; in intel_pt_cache() 618 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_add() 648 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_lookup() 659 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_invalidate()
|
D | dso.c | 1501 auxtrace_cache__free(RC_CHK_ACCESS(dso)->auxtrace_cache); in dso__delete()
|