Home
last modified time | relevance | path

Searched refs:shell (Results 76 - 100 of 585) sorted by relevance

12345678910>>...24

/third_party/lz4/programs/
H A DMakefile40 LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
41 LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
42 LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
43 LIBVER := $(shell echo $(LIBVER_SCRIPT))
59 ifeq ($(TARGET_OS)$(shell $(OS_VERSION)),SunOS5.10)
/third_party/ltp/testcases/kernel/fs/scsi/ltpfs/
H A DMakefile13 KDIR := /lib/modules/$(shell uname -r)/build
14 PWD := $(shell pwd)
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/
H A DMakefile36 SZ_COMMIT_COUNT := $(shell git -C $(SUBZERO_SRC_ROOT) rev-list --count HEAD)
37 SZ_GIT_HASH := $(shell git -C $(SUBZERO_SRC_ROOT) rev-parse HEAD)
/third_party/icu/icu4c/source/tools/gencolusb/
H A DMakefile18 srcdir=$(shell pwd)
19 SOURCE_ROOT=$(shell cd ../.. ; pwd)
/third_party/skia/third_party/externals/icu/source/tools/gencolusb/
H A DMakefile18 srcdir=$(shell pwd)
19 SOURCE_ROOT=$(shell cd ../.. ; pwd)
/third_party/skia/third_party/externals/brotli/python/
H A DMakefile26 EXT_SUFFIX=$(shell $(PYTHON) -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX"))')
27 EXT_SOURCES=$(shell find . -name '*.cc')
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/icons/
H A DMakefile8 ifeq (1, $(shell which inkscape; echo $$?))
11 ifeq (0, $(shell inkscape --without-gui 2>&1 > /dev/null; echo $$?))
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/
H A DMakefile35 $(shell if $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
89 KDIR-$(shell uname -m):=/lib/modules/$(shell uname -r)/build
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/
H A DMakefile35 $(shell if $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
89 KDIR-$(shell uname -m):=/lib/modules/$(shell uname -r)/build
/third_party/icu/tools/multi/proj/icu4cscan/
H A DMakefile29 MergerClassPath=$(shell ls $(MergerLib)/*.jar | tr '\n' ':')$(MergerJar):$(OTHERJARS)
69 DTDCACHE=$(shell pwd)/dtdcache
70 DTDTMP=$(shell pwd)/dtdtmp
/third_party/selinux/libsepol/src/
H A DMakefile9 VERSION = $(shell cat ../VERSION)
34 ifeq (yes,$(shell printf '${H}define _GNU_SOURCE\n${H}include <stdlib.h>\nint main(void){void*p=reallocarray(NULL, 1, sizeof(char));return 0;}' | $(CC) -x c -o /dev/null - >/dev/null 2>&1 && echo yes))
41 OS := $(shell uname)
/third_party/node/deps/v8/tools/testrunner/objects/
H A Dtestcase.py289 shell = self.get_shell()
291 shell += '.exe'
294 return self._create_cmd(shell, shell_flags + params, env, timeout)
384 def _create_cmd(self, shell, params, env, timeout):
387 shell=os.path.abspath(os.path.join(self._test_config.shell_dir, shell)),
/third_party/node/
H A DMakefile12 OSTYPE := $(shell uname -s | tr '[:upper:]' '[:lower:]')
16 ARCHTYPE := $(shell uname -m | tr '[:upper:]' '[:lower:]')
73 BUILDTYPE_LOWER := $(shell echo $(BUILDTYPE) | tr '[:upper:]' '[:lower:]')
76 EXEEXT := $(shell $(PYTHON) -c \
378 @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
605 WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt
634 @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
642 $(PYTHON) tools/test.py --shell $(NODE) $(TEST_CI_ARGS) $(PARALLEL_ARGS) doctool
754 @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
763 @if [ "$(shell
[all...]
/device/soc/rockchip/common/sdk_linux/scripts/
H A DMakefile6 CRYPTO_LIBS = $(shell pkg-config --libs libcrypto 2> /dev/null || echo -lcrypto)
7 CRYPTO_CFLAGS = $(shell pkg-config --cflags libcrypto 2> /dev/null)
/third_party/cJSON/tests/unity/examples/example_2/
H A Dmakefile9 ifeq ($(shell uname -s),) # not in a bash-like shell
12 else # in a bash-like shell, like msys
24 ifeq ($(shell uname -s), Darwin)
/third_party/mesa3d/ohos/
H A Dbuild_mesa3d.py76 subprocess.run(F'ninja -C build-ohos -j{nproc}', shell=True, check=True)
77 subprocess.run(F'ninja -C build-ohos install', shell=True, check=True)
/third_party/mbedtls/tests/scripts/
H A Dgenerate_server9_bad_saltlen.py72 der_bytes = subprocess.check_output(cmd, shell=True)
79 shell=True)
/third_party/node/deps/v8/tools/
H A Dtry_perf.py101 'update_depot_tools', shell=True, stderr=subprocess.STDOUT, cwd=V8_BASE)
116 subprocess.check_call(' '.join(cmd), shell=True, cwd=V8_BASE)
/third_party/vk-gl-cts/external/vulkan-docs/src/antora/
H A DMakefile40 -component $(shell realpath antora/modules/ROOT) \
56 -component $(shell realpath antora/modules/proposals) \
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_opengl3/
H A DMakefile25 UNAME_S := $(shell uname -s)
63 LDFLAGS += --shell-file shell_minimal.html $(EMS)
/third_party/skia/tools/skpbench/
H A D_adb.py21 def shell(self, cmd): member in Adb
24 self.__invoke('shell', cmd)
30 result = subprocess.check_output(self.__invocation + ['shell', cmd])
52 self.shell('reboot')
58 self.__invoke('shell', 'echo', '$(whoami)@$(getprop ro.serialno)$',
/third_party/unity/examples/example_2/
H A Dmakefile9 ifeq ($(shell uname -s),) # not in a bash-like shell
12 else # in a bash-like shell, like msys
24 ifeq ($(shell uname -s), Darwin)
/third_party/fsverity-utils/
H A DMakefile38 cc-option = $(shell if $(CC) $(1) -c -x c /dev/null -o /dev/null > /dev/null 2>&1; \
43 ifneq ($(findstring -mingw,$(shell $(CC) -dumpmachine 2>/dev/null)),)
108 LDLIBS := $(shell "$(PKGCONF)" libcrypto --libs 2>/dev/null || echo -lcrypto)
109 CFLAGS += $(shell "$(PKGCONF)" libcrypto --cflags 2>/dev/null || echo)
/third_party/lz4/lib/
H A DMakefile41 LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
42 LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
43 LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
44 LIBVER := $(shell echo $(LIBVER_SCRIPT))
/third_party/python/Lib/asyncio/
H A Dbase_subprocess.py12 def __init__(self, loop, protocol, args, shell,
36 self._start(args=args, shell=shell, stdin=stdin, stdout=stdout,
84 def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):

Completed in 10 milliseconds

12345678910>>...24