Lines Matching +full:configure +full:- +full:args
4 # SPDX-License-Identifier: MIT
49 m = re.match("void ([^:]+)::configure\(([^)]*)\)", decl)
53 args = m.group(2)
55 args = re.sub("\/\*.*?\*\/","",args)
57 args = re.sub("<.*?>","",args)
58 logger.debug(args)
60 for arg in args.split(","):
73 assert len(arg_names), "No argument to configure for %s ?" % class_name
75 …fd.write("%s CREATE_TRACEPOINT(%s, \"%s\", this, TracePoint::Args()" % (spaces, source, class_n…
89 parser.add_argument("-D", "--debug", action='store_true', help="Enable script debugging output")
90 args = parser.parse_args() variable
92 if args.debug:
95 logger.debug("Arguments passed: %s" % str(args.__dict__))
102 if re.search(r"void.*::configure\(",line):
119 if re.search(r"void.*::configure\(",line):