auxtrace_cache   1375 tools/perf/util/auxtrace.c struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
auxtrace_cache   1378 tools/perf/util/auxtrace.c 	struct auxtrace_cache *c;
auxtrace_cache   1382 tools/perf/util/auxtrace.c 	c = zalloc(sizeof(struct auxtrace_cache));
auxtrace_cache   1408 tools/perf/util/auxtrace.c static void auxtrace_cache__drop(struct auxtrace_cache *c)
auxtrace_cache   1427 tools/perf/util/auxtrace.c void auxtrace_cache__free(struct auxtrace_cache *c)
auxtrace_cache   1437 tools/perf/util/auxtrace.c void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c)
auxtrace_cache   1442 tools/perf/util/auxtrace.c void auxtrace_cache__free_entry(struct auxtrace_cache *c __maybe_unused,
auxtrace_cache   1448 tools/perf/util/auxtrace.c int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
auxtrace_cache   1460 tools/perf/util/auxtrace.c void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key)
auxtrace_cache    383 tools/perf/util/auxtrace.h struct auxtrace_cache;
auxtrace_cache    485 tools/perf/util/auxtrace.h struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
auxtrace_cache    487 tools/perf/util/auxtrace.h void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache);
auxtrace_cache    488 tools/perf/util/auxtrace.h void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c);
auxtrace_cache    489 tools/perf/util/auxtrace.h void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry);
auxtrace_cache    490 tools/perf/util/auxtrace.h int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
auxtrace_cache    492 tools/perf/util/auxtrace.h void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key);
auxtrace_cache    672 tools/perf/util/auxtrace.h void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused)
auxtrace_cache   1224 tools/perf/util/dso.c 	auxtrace_cache__free(dso->auxtrace_cache);
auxtrace_cache    132 tools/perf/util/dso.h struct auxtrace_cache;
auxtrace_cache    173 tools/perf/util/dso.h 	struct auxtrace_cache *auxtrace_cache;
auxtrace_cache    447 tools/perf/util/intel-pt.c static struct auxtrace_cache *intel_pt_cache(struct dso *dso,
auxtrace_cache    450 tools/perf/util/intel-pt.c 	struct auxtrace_cache *c;
auxtrace_cache    453 tools/perf/util/intel-pt.c 	if (dso->auxtrace_cache)
auxtrace_cache    454 tools/perf/util/intel-pt.c 		return dso->auxtrace_cache;
auxtrace_cache    461 tools/perf/util/intel-pt.c 	dso->auxtrace_cache = c;
auxtrace_cache    470 tools/perf/util/intel-pt.c 	struct auxtrace_cache *c = intel_pt_cache(dso, machine);
auxtrace_cache    499 tools/perf/util/intel-pt.c 	struct auxtrace_cache *c = intel_pt_cache(dso, machine);
auxtrace_cache    504 tools/perf/util/intel-pt.c 	return auxtrace_cache__lookup(dso->auxtrace_cache, offset);