Searched refs:cwd (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/zephyr/scripts/blobs/ |
D | esp_genblobs.py | 39 def cmd_exec(cmd, cwd=None, shell=False): argument 40 return subprocess.check_call(cmd, cwd=cwd, shell=shell) 51 cmd_exec(("git", "clone", git_url, folder, "--quiet"), cwd=path) 53 cmd_exec(("git", "-C", folder, "fetch"), cwd=path) 54 cmd_exec(("git", "-C", folder, "checkout", git_rev, "--quiet"), cwd=path)
|
/hal_espressif-latest/west/ |
D | tools.py | 37 def cmd_check(cmd, cwd=None, stderr=subprocess.STDOUT): argument 38 return subprocess.check_output(cmd, cwd=cwd, stderr=stderr) 41 def cmd_exec(cmd, cwd=None, shell=False): argument 42 return subprocess.check_call(cmd, cwd=cwd, shell=shell) 190 cmd_exec(cmd, cwd=cmd_path)
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | output_helpers.py | 78 translation = subprocess.check_output(cmd, cwd='.')
|
D | gdbhelper.py | 51 process = subprocess.Popen(cmd, cwd='.')
|
/hal_espressif-latest/tools/esptool_py/test/ |
D | test_esptool.py | 90 cwd=TEST_DIR, 127 [str(s) for s in cmd], cwd=TEST_DIR, stderr=subprocess.STDOUT 157 cwd=TEST_DIR, 1350 cwd=TEST_DIR,
|
D | test_merge_bin.py | 61 cmd, cwd=IMAGES_DIR, stderr=subprocess.STDOUT
|
D | test_espsecure.py | 41 [str(s) for s in cmd], cwd=TEST_DIR, stderr=subprocess.STDOUT
|