Lines Matching +full:- +full:- +full:prefix
2 # -*- python -*-
31 return re.sub("-", ".", filename) + ".log"
60 prefix = probe_prefix(args.binary)
68 probes.append("probe %s.%s {}" % (prefix, probe))
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])
95 prefix = probe_prefix(args.binary)
96 offset = len(prefix) + 1
97 script = prefix + "." + name
101 proc = subprocess.Popen([stap, "-I", tapsets, "-l", script],
110 if line.startswith(prefix):
122 parser.add_argument("-v", "--verbose", help="Print verbose progress info",
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",
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*'