Home
last modified time | relevance | path

Searched refs:probe_cache (Results 1 – 5 of 5) sorted by relevance

/linux/tools/perf/util/
H A Dprobe-file.h19 struct probe_cache { struct
54 struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi);
55 int probe_cache__add_entry(struct probe_cache *pcache,
58 int probe_cache__scan_sdt(struct probe_cache *pcache, const char *pathname);
59 int probe_cache__commit(struct probe_cache *pcache);
60 void probe_cache__purge(struct probe_cache *pcache);
61 void probe_cache__delete(struct probe_cache *pcache);
62 int probe_cache__filter_purge(struct probe_cache *pcache,
64 struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache,
66 struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcach
35 entriesprobe_cache global() argument
[all...]
H A Dprobe-file.c431 static int probe_cache__open(struct probe_cache *pcache, const char *target, in probe_cache__open()
491 static int probe_cache__load(struct probe_cache *pcache) in probe_cache__load()
550 static struct probe_cache *probe_cache__alloc(void) in probe_cache__alloc()
552 struct probe_cache *pcache = zalloc(sizeof(*pcache)); in probe_cache__alloc()
561 void probe_cache__purge(struct probe_cache *pcache) in probe_cache__purge()
571 void probe_cache__delete(struct probe_cache *pcache) in probe_cache__delete()
582 struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi) in probe_cache__new()
584 struct probe_cache *pcache = probe_cache__alloc(); in probe_cache__new()
621 probe_cache__find(struct probe_cache *pcache, struct perf_probe_event *pev) in probe_cache__find()
654 probe_cache__find_by_name(struct probe_cache *pcach
[all...]
H A Dprint-events.c70 struct probe_cache *pcache; in print_sdt_events()
H A Dprobe-event.c2987 struct probe_cache *cache = NULL; in __add_probe_trace_events()
3436 struct probe_cache *cache; in find_cached_events()
3519 struct probe_cache *cache; in find_probe_trace_events_from_cache()
/linux/tools/perf/tests/
H A Dsdt.c62 struct probe_cache *cache = probe_cache__new(target, NULL); in search_cached_probe()