| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | builderthread.py | 91 def Make(self, commit, brd, stage, cwd, *args, **kwargs): argument 110 return self.builder.do_make(commit, brd, stage, cwd, *args, 196 cwd = work_dir 209 cwd = None 227 result = self.Make(commit, brd, 'mrproper', cwd, 230 result = self.Make(commit, brd, 'config', cwd, 237 result = self.Make(commit, brd, 'build', cwd, *args, 318 capture_stderr=True, cwd=result.out_dir, 328 capture_stderr=True, cwd=result.out_dir, 343 capture_stderr=True, cwd=result.out_dir,
|
| H A D | builder.py | 380 def Make(self, commit, brd, stage, cwd, *args, **kwargs): argument 393 cwd=cwd, raise_on_error=False, **kwargs)
|
| H A D | func_test.py | 373 def _HandleMake(self, commit, brd, stage, cwd, *args, **kwargs): argument
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | command.py | 45 raise_on_error=True, cwd=None, **kwargs): argument 87 last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs)
|
| H A D | cros_subprocess.py | 57 shell=False, cwd=None, env=None, **kwargs): argument 84 stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, env=env, 339 plist = Popen('pwd', shell=shell, cwd='/tmp').CommunicateFilter(oper.Output)
|
| H A D | gitutil.py | 236 result = command.RunPipe([pipe], capture=True, cwd=output_dir,
|
| /rk3399_rockchip-uboot/test/py/ |
| H A D | u_boot_spawn.py | 26 def __init__(self, args, cwd=None): argument 58 if cwd: 59 os.chdir(cwd)
|
| H A D | u_boot_console_sandbox.py | 55 return Spawn(cmd, cwd=self.config.source_dir)
|
| H A D | multiplexed_log.py | 112 def run(self, cmd, cwd=None, ignore_errors=False): argument 137 p = subprocess.Popen(cmd, cwd=cwd,
|
| H A D | conftest.py | 135 runner.run(cmd, cwd=source_dir)
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | moveconfig.py | 1162 cwd=self.current_src_dir) 1183 cwd=self.current_src_dir) 1390 cwd=self.src_dir) 1394 stderr=subprocess.STDOUT, cwd=self.src_dir) 1505 cwd = os.getcwd() 1506 if cwd and fname.startswith(cwd): 1507 fname = fname[len(cwd) + 1:] 1698 cwd = os.getcwd() 1718 if cwd and fname.startswith(cwd): 1719 fname = fname[len(cwd) + 1:] [all …]
|
| H A D | kwbimage.c | 969 char cwd[PATH_MAX]; in image_headersz_v1() local 970 char *dir = cwd; in image_headersz_v1() 972 memset(cwd, 0, sizeof(cwd)); in image_headersz_v1() 973 if (!getcwd(cwd, sizeof(cwd))) { in image_headersz_v1()
|
| /rk3399_rockchip-uboot/common/ |
| H A D | cli_hush.c | 298 static const char *cwd; variable 534 if(cwd==unknown) in set_cwd() 535 cwd = NULL; /* xgetcwd(arg) called free(arg) */ in set_cwd() 536 cwd = xgetcwd((char *)cwd); in set_cwd() 537 if (!cwd) in set_cwd() 538 cwd = unknown; in set_cwd() 539 return cwd; in set_cwd() 964 PS1=xmalloc(strlen(cwd)+4); in setup_prompt_string() 965 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# "); in setup_prompt_string() 3499 if (cwd && cwd != unknown) [all …]
|