Lines Matching +full:- +full:- +full:help
2 # -*- python -*-
31 return re.sub("-", ".", filename) + ".log"
76 script = """probe begin { print("Running script, <Ctrl>-c to quit\\n") } """ + script
80 stapargs = [stap, "-s", "8", "-I", tapsets ]
82 stapargs.extend(["-x", args.pid])
83 stapargs.extend(["-e", script])
101 proc = subprocess.Popen([stap, "-I", tapsets, "-l", script],
122 parser.add_argument("-v", "--verbose", help="Print verbose progress info",
125 subparser = parser.add_subparsers(help="commands")
129 runparser = subparser.add_parser("run", help="Run a trace session",
133 To watch all trace points on the qemu-system-x86_64 binary:
135 %(argv0)s run qemu-system-x86_64
139 %(argv0)s run qemu-system-x86_64 'qio*' 'qcrypto*'
142 runparser.add_argument("--pid", "-p", dest="pid",
143 help="Restrict tracing to a specific process ID")
144 runparser.add_argument("binary", help="QEMU system or user emulator binary")
145 runparser.add_argument("probes", help="Probe names or wildcards",
148 listparser = subparser.add_parser("list", help="List probe points",
152 To list all trace points on the qemu-system-x86_64 binary:
154 %(argv0)s list qemu-system-x86_64
158 %(argv0)s list qemu-system-x86_64 'qio*' 'qcrypto*'
161 listparser.add_argument("binary", help="QEMU system or user emulator binary")
162 listparser.add_argument("probes", help="Probe names or wildcards",