Searched refs:auxtrace_cache (Results 1 – 5 of 5) sorted by relevance
/linux/tools/perf/util/ |
A D | auxtrace.h | 442 struct auxtrace_cache; 545 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, 547 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache); 548 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c); 549 void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry); 550 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, 552 void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key); 553 void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key); 809 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused) in auxtrace_cache__free()
|
A D | dso.h | 145 struct auxtrace_cache; 187 struct auxtrace_cache *auxtrace_cache; member
|
A D | auxtrace.c | 1887 struct auxtrace_cache { struct 1896 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, in auxtrace_cache__new() argument 1899 struct auxtrace_cache *c; in auxtrace_cache__new() 1903 c = zalloc(sizeof(struct auxtrace_cache)); in auxtrace_cache__new() 1929 static void auxtrace_cache__drop(struct auxtrace_cache *c) in auxtrace_cache__drop() 1948 void auxtrace_cache__free(struct auxtrace_cache *c) in auxtrace_cache__free() 1958 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c) in auxtrace_cache__alloc_entry() 1963 void auxtrace_cache__free_entry(struct auxtrace_cache *c __maybe_unused, in auxtrace_cache__free_entry() 1969 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, in auxtrace_cache__add() 2002 void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key) in auxtrace_cache__remove() [all …]
|
A D | intel-pt.c | 568 static struct auxtrace_cache *intel_pt_cache(struct dso *dso, in intel_pt_cache() 571 struct auxtrace_cache *c; in intel_pt_cache() 574 if (dso->auxtrace_cache) in intel_pt_cache() 575 return dso->auxtrace_cache; in intel_pt_cache() 582 dso->auxtrace_cache = c; in intel_pt_cache() 591 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_add() 620 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_lookup() 625 return auxtrace_cache__lookup(dso->auxtrace_cache, offset); in intel_pt_cache_lookup() 631 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_invalidate() 636 auxtrace_cache__remove(dso->auxtrace_cache, offset); in intel_pt_cache_invalidate() [all …]
|
A D | dso.c | 1323 auxtrace_cache__free(dso->auxtrace_cache); in dso__delete()
|
Completed in 28 milliseconds