Searched refs:auxtrace_cache (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/tools/perf/util/ |
D | auxtrace.h | 414 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, 416 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache); 417 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c); 418 void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry); 419 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, 421 void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key); 606 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused) in auxtrace_cache__free()
|
D | auxtrace.c | 1283 struct auxtrace_cache { struct 1292 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, in auxtrace_cache__new() argument 1295 struct auxtrace_cache *c; in auxtrace_cache__new() 1299 c = zalloc(sizeof(struct auxtrace_cache)); in auxtrace_cache__new() 1325 static void auxtrace_cache__drop(struct auxtrace_cache *c) in auxtrace_cache__drop() 1344 void auxtrace_cache__free(struct auxtrace_cache *c) in auxtrace_cache__free() 1354 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c) in auxtrace_cache__alloc_entry() 1359 void auxtrace_cache__free_entry(struct auxtrace_cache *c __maybe_unused, in auxtrace_cache__free_entry() 1365 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, in auxtrace_cache__add() 1377 void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key) in auxtrace_cache__lookup()
|
D | dso.h | 132 struct auxtrace_cache; 170 struct auxtrace_cache *auxtrace_cache; member
|
D | intel-pt.c | 350 static struct auxtrace_cache *intel_pt_cache(struct dso *dso, in intel_pt_cache() 353 struct auxtrace_cache *c; in intel_pt_cache() 356 if (dso->auxtrace_cache) in intel_pt_cache() 357 return dso->auxtrace_cache; in intel_pt_cache() 364 dso->auxtrace_cache = c; in intel_pt_cache() 373 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_add() 401 struct auxtrace_cache *c = intel_pt_cache(dso, machine); in intel_pt_cache_lookup() 406 return auxtrace_cache__lookup(dso->auxtrace_cache, offset); in intel_pt_cache_lookup()
|
D | dso.c | 1096 auxtrace_cache__free(dso->auxtrace_cache); in dso__delete()
|