Home
last modified time | relevance | path

Searched refs:argument_list (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/soc/nuvoton/npcx/common/ecst/
Decst_args.py124 def _populate_args(self, argument_list): argument
126 for arg in vars(argument_list):
127 if (arg == "input") & (argument_list.input is not None):
128 self.input = argument_list.input
130 elif (arg == "output") & (argument_list.output is not None):
131 self.output = argument_list.output
133 elif (arg == "chip") & (argument_list.chip is not None):
134 self.chip_name = argument_list.chip
137 elif (arg == "verbose") & argument_list.verbose:
140 elif (arg == "super_verbose") & argument_list.super_verbose:
[all …]
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/
Desiost_args.py78 def _populate_args(self, argument_list): argument
80 for arg in vars(argument_list):
81 if (arg == "input") & (argument_list.input is not None):
82 self.input = argument_list.input
84 elif (arg == "output") & (argument_list.output is not None):
85 self.output = argument_list.output
87 elif (arg == "chip") & (argument_list.chip is not None):
88 self.chip_name = argument_list.chip
91 elif (arg == "verbose") & argument_list.verbose: