Lines Matching refs:kp
336 int register_kprobe(struct kprobe *kp);
338 Sets a breakpoint at the address kp->addr. When the breakpoint is
339 hit, Kprobes calls kp->pre_handler. After the probed instruction
340 is single-stepped, Kprobe calls kp->post_handler. If a fault
341 occurs during execution of kp->pre_handler or kp->post_handler,
343 kp->fault_handler. Any or all handlers can be NULL. If kp->flags
344 is set KPROBE_FLAG_DISABLED, that kp will be registered but disabled,
345 so, its handlers aren't hit until calling enable_kprobe(kp).
352 kp.symbol_name = "symbol_name";
370 User's pre-handler (kp->pre_handler):
379 User's post-handler (kp->post_handler):
388 User's fault-handler (kp->fault_handler):
403 Sets a breakpoint at the address jp->kp.addr, which must be the address
422 rp->kp.addr. When that function returns, Kprobes calls rp->handler.
452 void unregister_kprobe(struct kprobe *kp);
499 int disable_kprobe(struct kprobe *kp);
509 int enable_kprobe(struct kprobe *kp);