Lines Matching refs:probe_cache
19 struct probe_cache { struct
55 struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi);
56 int probe_cache__add_entry(struct probe_cache *pcache,
59 int probe_cache__scan_sdt(struct probe_cache *pcache, const char *pathname);
60 int probe_cache__commit(struct probe_cache *pcache);
61 void probe_cache__purge(struct probe_cache *pcache);
62 void probe_cache__delete(struct probe_cache *pcache);
63 int probe_cache__filter_purge(struct probe_cache *pcache,
65 struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache,
67 struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcache,
77 static inline struct probe_cache *probe_cache__new(const char *tgt __maybe_unused, struct nsinfo *n… in probe_cache__new()