Lines Matching full:probe
3 * builtin-probe.c
5 * Builtin probe command: Set up probe events by C expression
28 #include "util/probe-finder.h"
29 #include "util/probe-event.h"
30 #include "util/probe-file.h"
59 pr_debug("probe-definition(%d): %s\n", params.nevents, str); in parse_probe_event()
75 /* Parse a perf-probe command into event */ in parse_probe_event()
503 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]", in __cmd_probe()
504 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]", in __cmd_probe()
505 "perf probe [<options>] --del '[GROUP:]EVENT' ...", in __cmd_probe()
506 "perf probe --list [GROUP:]EVENT ...", in __cmd_probe()
508 "perf probe [<options>] --line 'LINEDESC'", in __cmd_probe()
509 "perf probe [<options>] --vars 'PROBEPOINT'", in __cmd_probe()
511 "perf probe [<options>] --funcs", in __cmd_probe()
520 "list up probe events", in __cmd_probe()
522 OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.", in __cmd_probe()
525 "probe point definition, where\n" in __cmd_probe()
530 "\t\t%return:\tPut the probe at function return\n" in __cmd_probe()
565 "Set how many probe points can be found for a probe."), in __cmd_probe()
567 "Show potential probe-able functions.", in __cmd_probe()
583 OPT_BOOLEAN(0, "cache", &probe_conf.cache, "Manipulate probe cache"), in __cmd_probe()
589 "Output probe definition with bootconfig format"), in __cmd_probe()
714 pr_err(" Error: -x/-m must follow the probe definitions.\n"); in __cmd_probe()