Symbol: probe_cache
tools/perf/builtin-probe.c
416
struct probe_cache *cache;
tools/perf/tests/sdt.c
62
struct probe_cache *cache = probe_cache__new(target, NULL);
tools/perf/util/build-id.c
556
struct probe_cache *cache;
tools/perf/util/print-events.c
70
struct probe_cache *pcache;
tools/perf/util/probe-event.c
2988
struct probe_cache *cache = NULL;
tools/perf/util/probe-event.c
3437
struct probe_cache *cache;
tools/perf/util/probe-event.c
3520
struct probe_cache *cache;
tools/perf/util/probe-file.c
1026
int probe_cache__filter_purge(struct probe_cache *pcache,
tools/perf/util/probe-file.c
1041
static int probe_cache__show_entries(struct probe_cache *pcache,
tools/perf/util/probe-file.c
1056
struct probe_cache *pcache;
tools/perf/util/probe-file.c
432
static int probe_cache__open(struct probe_cache *pcache, const char *target,
tools/perf/util/probe-file.c
492
static int probe_cache__load(struct probe_cache *pcache)
tools/perf/util/probe-file.c
551
static struct probe_cache *probe_cache__alloc(void)
tools/perf/util/probe-file.c
553
struct probe_cache *pcache = zalloc(sizeof(*pcache));
tools/perf/util/probe-file.c
562
void probe_cache__purge(struct probe_cache *pcache)
tools/perf/util/probe-file.c
572
void probe_cache__delete(struct probe_cache *pcache)
tools/perf/util/probe-file.c
583
struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi)
tools/perf/util/probe-file.c
585
struct probe_cache *pcache = probe_cache__alloc();
tools/perf/util/probe-file.c
622
probe_cache__find(struct probe_cache *pcache, struct perf_probe_event *pev)
tools/perf/util/probe-file.c
655
probe_cache__find_by_name(struct probe_cache *pcache,
tools/perf/util/probe-file.c
672
int probe_cache__add_entry(struct probe_cache *pcache,
tools/perf/util/probe-file.c
889
int probe_cache__scan_sdt(struct probe_cache *pcache, const char *pathname)
tools/perf/util/probe-file.c
990
int probe_cache__commit(struct probe_cache *pcache)
tools/perf/util/probe-file.h
54
struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi);
tools/perf/util/probe-file.h
55
int probe_cache__add_entry(struct probe_cache *pcache,
tools/perf/util/probe-file.h
58
int probe_cache__scan_sdt(struct probe_cache *pcache, const char *pathname);
tools/perf/util/probe-file.h
59
int probe_cache__commit(struct probe_cache *pcache);
tools/perf/util/probe-file.h
60
void probe_cache__purge(struct probe_cache *pcache);
tools/perf/util/probe-file.h
61
void probe_cache__delete(struct probe_cache *pcache);
tools/perf/util/probe-file.h
62
int probe_cache__filter_purge(struct probe_cache *pcache,
tools/perf/util/probe-file.h
64
struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache,
tools/perf/util/probe-file.h
66
struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcache,
tools/perf/util/probe-file.h
76
static inline struct probe_cache *probe_cache__new(const char *tgt __maybe_unused, struct nsinfo *nsi __maybe_unused)