Home | History | Annotate | Download | only in generator

Lines Matching full:request_args

1205     request_args: A list to hold command input arguments. Each element is a dict
1211 response_args: A list identical in form to request_args but to hold command
1457 Initially the request_args and response_args attributes are not set.
1464 self.request_args = None
1483 handles, parameters = self._SplitArgs(self.request_args)
1500 for arg in self.request_args:
1643 return len(self._SplitArgs(self.request_args)[0])
1696 args: An argument list in the same form as the request_args and
1711 args: An argument list in the same form as the request_args and
1727 args: An argument list in the same form as the request_args and
1779 handles, parameters = self._SplitArgs(self.request_args)
1896 cmd.request_args = self._ParseCommandArgs(cmd)
1903 request_var_names = set([arg['name'] for arg in cmd.request_args])
1922 A list of arguments in the same form as the Command.request_args and