Lines Matching refs:fprobe
19 struct fprobe { struct
33 void (*entry_handler)(struct fprobe *fp, unsigned long entry_ip, struct pt_regs *regs); argument
34 void (*exit_handler)(struct fprobe *fp, unsigned long entry_ip, struct pt_regs *regs); argument
46 static inline bool fprobe_disabled(struct fprobe *fp) in fprobe_disabled()
51 static inline bool fprobe_shared_with_kprobes(struct fprobe *fp) in fprobe_shared_with_kprobes()
57 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter);
58 int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num);
59 int register_fprobe_syms(struct fprobe *fp, const char **syms, int num);
60 int unregister_fprobe(struct fprobe *fp);
62 static inline int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter) in register_fprobe()
66 static inline int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num) in register_fprobe_ips()
70 static inline int register_fprobe_syms(struct fprobe *fp, const char **syms, int num) in register_fprobe_syms()
74 static inline int unregister_fprobe(struct fprobe *fp) in unregister_fprobe()
87 static inline void disable_fprobe(struct fprobe *fp) in disable_fprobe()
99 static inline void enable_fprobe(struct fprobe *fp) in enable_fprobe()