Lines Matching full:probe
3 * builtin-probe.c
5 * Builtin probe command: Set up probe events by C expression
27 #include "util/probe-finder.h"
28 #include "util/probe-event.h"
29 #include "util/probe-file.h"
58 pr_debug("probe-definition(%d): %s\n", params.nevents, str); in parse_probe_event()
74 /* Parse a perf-probe command into event */ in parse_probe_event()
499 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]", in __cmd_probe()
500 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]", in __cmd_probe()
501 "perf probe [<options>] --del '[GROUP:]EVENT' ...", in __cmd_probe()
502 "perf probe --list [GROUP:]EVENT ...", in __cmd_probe()
504 "perf probe [<options>] --line 'LINEDESC'", in __cmd_probe()
505 "perf probe [<options>] --vars 'PROBEPOINT'", in __cmd_probe()
507 "perf probe [<options>] --funcs", in __cmd_probe()
516 "list up probe events", in __cmd_probe()
518 OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.", in __cmd_probe()
521 "probe point definition, where\n" in __cmd_probe()
526 "\t\t%return:\tPut the probe at function return\n" in __cmd_probe()
561 "Set how many probe points can be found for a probe."), in __cmd_probe()
563 "Show potential probe-able functions.", in __cmd_probe()
579 OPT_BOOLEAN(0, "cache", &probe_conf.cache, "Manipulate probe cache"), in __cmd_probe()
699 pr_err(" Error: -x/-m must follow the probe definitions.\n"); in __cmd_probe()