Home | History | Annotate | Download | only in server

Lines Matching refs:subcommand

9 # entry points that use subcommand must set this to their logging manager
18 @param tasklist: A list of subcommand instances to execute.
59 Each element in the arglist used to create a subcommand object,
63 We create a subcommand object for each element in the list,
64 then execute those subcommand objects in parallel.
66 NOTE: As an optimization, if len(arglist) == 1 a subcommand is not used.
69 @param arglist: A list of single arguments to be used one per subcommand;
72 named after each subcommand's arg.
103 subcommands.append(subcommand(function, args, subdir))
107 class subcommand(object):
111 # func(args) - the subcommand to run
132 return str('subcommand(func=%s, args=%s, subdir=%s)' %
211 print "subcommand failed pid %d" % self.pid
256 print "subcommand failed pid %d" % self.pid