/base/update/packaging_tools/ |
H A D | build_update.py | 489 res = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
703 subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE,
|
H A D | update_package.py | 298 cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
541 cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
H A D | build_module_package.py | 411 subprocess.call(align_cmd, shell=False)
|
/third_party/littlefs/ |
H A D | Makefile | 159 $(if $(findstring n,$(MAKEFLAGS)),, $(shell mkdir -p \ 187 $(CTAGS) --totals --c-types=+p $(shell find -H -name '*.h') $(SRC)
|
/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 106 return subprocess.check_output(cmd_line, shell=True, cwd=cwd).decode('utf-8') 108 return subprocess.check_call(cmd_line, shell=True, cwd=cwd) 504 "that it's sensible, do so in another shell, but remember to not "
|
/third_party/python/Lib/ |
H A D | os.py | 621 named executable (similar to a shell) when launching a process. 974 # VxWorks has no user space shell provided. As a result, running 975 # command in a shell can't be supported. 988 shell=True, text=True, 994 shell=True, text=True,
|
/test/testfwk/developer_test/src/core/driver/ |
H A D | drivers.py | 498 process = subprocess.Popen("tar -zxf %s -C %s" % (tar_path, cxx_cov_path), shell=True) 504 (tar_path, cxx_cov_path), shell=True).communicate() 505 subprocess.Popen("rm -rf %s" % tar_path, shell=True).communicate() 508 os.path.join(cxx_cov_path, OBJ)), shell=True).communicate() 777 mkdir_corpus_command = f"shell; mkdir -p {corpus}" 877 self.config.device.connector_command("shell hilog -r") 961 test_timeout = int(driver_dict["shell-timeout"]) / 1000 966 print(" get json shell timeout finally")
|
/third_party/mksh/ |
H A D | main.c | 373 /* define shell keywords */ in main_init() 430 /* assign default shell variable values */ in main_init() 704 /* track shell-imposed changes */ in main_init() 723 /* track shell-imposed changes */ in main_init() 734 /* track shell-imposed change (might lower surprise) */ in main_init() 758 shell(s, 0); in main() 801 * If user ^Cs out, we don't want to kill the shell... in include() 823 i = shell(s, 1); in include() 833 /* spawn a command into a shell optionally keeping track of the line number */ 843 rv = shell( in command() 852 shell(Source * volatile s, volatile int level) shell() function [all...] |
/applications/standard/app_samples/code/Project/HapBuild/test-tool/ |
H A D | InstallAndTestSpecial_ci.py | 47 f = os.popen(f"hdc shell \"{cmd}\"") 57 f = os.popen(f"hdc shell \"{cmd}\" >> {path}") 149 cmd = r"hdc shell aa test -b {} -p com.example.entry_test -m entry_test -s unittest /ets/TestRunner/OpenHarmonyTestRunner -s timeout 30000000 " 151 cmd= r"hdc shell aa test -b {} -p com.example.entry_test -m entry_test -s unittest OpenHarmonyTestRunner -s timeout 30000000 " 164 p = subprocess.Popen(tmp_cmd, shell=True, close_fds=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, 179 f"hdc shell snapshot_display -f /data/snapshot/{bundle}_{current}.jpeg") 183 exec_cmd_simple("hdc shell rm -rf /data/snapshot/*") 195 cmd_launcher = 'hdc shell aa start -b ohos.samples.launcher -a MainAbility' 231 exec_cmd_simple("hdc shell power-shell setmod [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | sharedbuffer_configuration.py | 122 out = subprocess.check_output(cmd, shell=True)
|
/kernel/linux/linux-5.10/scripts/dtc/ |
H A D | dtx_diff | 57 The shell variable \${ARCH} must provide the architecture containing 129 echo " shell variable \$ARCH not set" >&2 138 echo " but does not match shell variable \$ARCH" >&2
|
/kernel/linux/linux-5.10/scripts/ |
H A D | checkkconfigsymbols.py | 227 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
|
/kernel/linux/linux-5.10/tools/perf/Documentation/ |
H A D | Makefile | 299 -aperf_date=$(shell git log -1 --pretty="format:%cd" \
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | Makefile | 299 $(shell cd $(srctree)/$(src) && find * -name '*.h')))
|
/kernel/linux/linux-6.6/crypto/ |
H A D | Makefile | 126 CFLAGS_aegis128-neon-inner.o += -isystem $(shell $(CC) -print-file-name=include)
|
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | attr.py | 218 auxv = subprocess.check_output("LD_SHOW_AUXV=1 sleep 0", shell=True) \
|
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | sharedbuffer_configuration.py | 122 out = subprocess.check_output(cmd, shell=True)
|
/kernel/linux/linux-6.6/scripts/ |
H A D | checkkconfigsymbols.py | 229 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
|
/kernel/linux/linux-6.6/scripts/dtc/ |
H A D | dtx_diff | 57 The shell variable \${ARCH} must provide the architecture containing 129 echo " shell variable \$ARCH not set" >&2 138 echo " but does not match shell variable \$ARCH" >&2
|
/kernel/liteos_a/tools/build/mk/ |
H A D | los_config.mk | 48 get_compiler_path = $(or $(wildcard $(1)),$(dir $(shell which $(CROSS_COMPILE)as))) 487 LIB_SUBDIRS += shell 488 LITEOS_SHELL_INCLUDE += -I $(LITEOSTOPDIR)/shell/full/include 605 LITEOS_BASELIB += $(shell $(CC) $(LITEOS_CORE_COPTS) "-print-libgcc-file-name") 606 LITEOS_LIB_INCLUDE += -isystem $(shell $(CC) $(LITEOS_CORE_COPTS) "-print-file-name=include")
|
/test/testfwk/developer_test/local_coverage/interface_coverage/ |
H A D | interface_coverage_gcov_lcov.py | 217 function_info = subprocess.check_output(command, shell=False)
|
/test/testfwk/developer_test/src/core/build/ |
H A D | build_testcases.py | 118 if subprocess.call(command, shell=False) == 0:
|
/test/testfwk/developer_test/local_coverage/code_coverage/ |
H A D | multiprocess_code_coverage.py | 55 if 0 == subprocess.call(cmd_list, shell=False, stdout=out, stderr=err):
|
/third_party/eudev/src/shared/ |
H A D | util.h | 241 int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
|
/third_party/gn/build/ |
H A D | gen.py | 235 shell=True,
|