| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | command.py | 45 raise_on_error=True, cwd=None, **kwargs): argument 71 kwargs['stdout'] = None 72 kwargs['stderr'] = None 76 kwargs['stdin'] = last_pipe.stdout 78 kwargs['stdin'] = open(infile, 'rb') 80 kwargs['stdout'] = cros_subprocess.PIPE 82 kwargs['stdout'] = open(outfile, 'wb') 84 kwargs['stderr'] = cros_subprocess.PIPE 87 last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs) 107 def Output(*cmd, **kwargs): argument [all …]
|
| H A D | settings.py | 103 def get(self, section, option, *args, **kwargs): argument 114 *args, **kwargs 118 self, section, option, *args, **kwargs 121 def items(self, section, *args, **kwargs): argument 136 self, "%s_%s" % (self._project_name, section), *args, **kwargs 145 self, section, *args, **kwargs
|
| H A D | cros_subprocess.py | 57 shell=False, cwd=None, env=None, **kwargs): argument 85 **kwargs) 100 if kwargs:
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | func_test.py | 221 def _RunControl(self, *args, **kwargs): argument 226 clean_dir=kwargs.get('clean_dir', True)) 332 def _HandleCommand(self, **kwargs): argument 342 pipe_list = kwargs['pipe_list'] 348 print 'invalid pipe', kwargs 366 print 'unknown command', kwargs 373 def _HandleMake(self, commit, brd, stage, cwd, *args, **kwargs): argument
|
| H A D | builderthread.py | 91 def Make(self, commit, brd, stage, cwd, *args, **kwargs): argument 111 **kwargs)
|
| H A D | test.py | 140 def Make(self, commit, brd, stage, *args, **kwargs): argument
|
| H A D | builder.py | 380 def Make(self, commit, brd, stage, cwd, *args, **kwargs): argument 393 cwd=cwd, raise_on_error=False, **kwargs)
|
| /rk3399_rockchip-uboot/scripts/ |
| H A D | mkbootimg | 125 def __init__(self, option_strings, dest, nargs=None, **kwargs): argument 126 if 'maxlen' not in kwargs: 128 self.maxlen = int(kwargs['maxlen']) 129 del kwargs['maxlen'] 130 super(ValidateStrLenAction, self).__init__(option_strings, dest, **kwargs)
|
| /rk3399_rockchip-uboot/tools/binman/ |
| H A D | func_test.py | 103 def _RunBinman(self, *args, **kwargs): argument 112 if result.return_code and kwargs.get('raise_on_error', True):
|