Home
last modified time | relevance | path

Searched refs:env (Results 2001 - 2025 of 4633) sorted by relevance

1...<<81828384858687888990>>...186

/third_party/unity/
H A Dplatformio-build.py3 Import("env")
5 env.Append(CPPDEFINES=["UNITY_INCLUDE_CONFIG_H"])
15 env.Prepend(CPPPATH=[p])
/third_party/skia/infra/bots/recipe_modules/git/
H A Dapi.py10 def env(self): member in GitApi
18 return self.m.env({'PATH': self.m.path.pathsep.join(
/third_party/rust/crates/rustix/tests/io/
H A Ddup2_to_replace_stdio.rs3 use std::env;
11 assert!(Command::new(env::var("CARGO").unwrap()) in dup2_to_replace_stdio()
/third_party/node/tools/gyp/pylib/gyp/
H A Dmsvs_emulation.py154 env = {}
158 env["$(VSInstallDir)"] = vs_version.Path()
159 env["$(VCInstallDir)"] = os.path.join(vs_version.Path(), "VC") + "\\"
165 env["$(DXSDK_DIR)"] = dxsdk_dir if dxsdk_dir else ""
168 env["$(WDK_DIR)"] = os.environ.get("WDK_DIR", "")
169 return env
182 env = GetGlobalVSMacroEnv(GetVSVersion(generator_flags))
184 [ExpandMacros(include, env) for include in all_system_includes]
288 env = self.GetVSMacroEnv(base_to_build, config=config)
289 return ExpandMacros(s, env)
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmsvs_emulation.py154 env = {}
158 env["$(VSInstallDir)"] = vs_version.Path()
159 env["$(VCInstallDir)"] = os.path.join(vs_version.Path(), "VC") + "\\"
165 env["$(DXSDK_DIR)"] = dxsdk_dir if dxsdk_dir else ""
168 env["$(WDK_DIR)"] = os.environ.get("WDK_DIR", "")
169 return env
182 env = GetGlobalVSMacroEnv(GetVSVersion(generator_flags))
184 [ExpandMacros(include, env) for include in all_system_includes]
285 env = self.GetVSMacroEnv(base_to_build, config=config)
286 return ExpandMacros(s, env)
[all...]
/third_party/libuv/test/
H A Dtest-spawn.c236 char* env[1]; in TEST_IMPL() local
250 options.env = env; in TEST_IMPL()
251 env[0] = NULL; in TEST_IMPL()
803 /* Explicitly set options.env to NULL to test for env clobbering. */ in TEST_IMPL()
804 options.env = NULL; in TEST_IMPL()
1287 WCHAR* env; in TEST_IMPL() local
1308 result = make_program_env(environment, &env); in TEST_IMPL()
1311 for (str = env, pre in TEST_IMPL()
1375 char* env[1]; TEST_IMPL() local
1429 char* env[2]; TEST_IMPL() local
1818 char* env[3]; TEST_IMPL() local
[all...]
/third_party/python/Lib/test/
H A Dtest_sys.py723 env = dict(os.environ)
728 env["PYTHONIOENCODING"] = "cp424"
730 stdout = subprocess.PIPE, env=env)
735 env["PYTHONIOENCODING"] = "ascii:replace"
737 stdout = subprocess.PIPE, env=env)
741 env["PYTHONIOENCODING"] = "ascii"
744 env=env)
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsvghelper.c23 #include "env.h"
752 int svg_build_topology_map(struct perf_env *env) in svg_build_topology_map() argument
758 nr_cpus = min(env->nr_cpus_online, MAX_NR_CPUS); in svg_build_topology_map()
760 t.sib_core_nr = env->nr_sibling_cores; in svg_build_topology_map()
761 t.sib_thr_nr = env->nr_sibling_threads; in svg_build_topology_map()
762 t.sib_core = calloc(env->nr_sibling_cores, sizeof(cpumask_t)); in svg_build_topology_map()
763 t.sib_thr = calloc(env->nr_sibling_threads, sizeof(cpumask_t)); in svg_build_topology_map()
765 sib_core = env->sibling_cores; in svg_build_topology_map()
766 sib_thr = env->sibling_threads; in svg_build_topology_map()
773 for (i = 0; i < env in svg_build_topology_map()
[all...]
H A Dllvm-utils.c73 char *env, *path, *tmp = NULL; in search_program() local
88 env = getenv("PATH"); in search_program()
89 if (!env) in search_program()
91 env = strdup(env); in search_program()
92 if (!env) in search_program()
96 path = strtok_r(env, ":", &tmp); in search_program()
107 free(env); in search_program()
202 pr_debug("set env: %s=%s\n", var, value); in force_set_env()
205 pr_debug("unset env in force_set_env()
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dconf.c89 char *env; in set_randconfig_seed() local
92 env = getenv("KCONFIG_SEED"); in set_randconfig_seed()
93 if (env && *env) { in set_randconfig_seed()
96 seed = strtol(env, &endp, 0); in set_randconfig_seed()
186 char *env = getenv("KCONFIG_PROBABILITY"); in conf_set_all_new_symbols() local
189 while (env && *env) { in conf_set_all_new_symbols()
191 int tmp = strtol(env, &endp, 10); in conf_set_all_new_symbols()
200 env in conf_set_all_new_symbols()
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsvghelper.c23 #include "env.h"
752 int svg_build_topology_map(struct perf_env *env) in svg_build_topology_map() argument
758 nr_cpus = min(env->nr_cpus_online, MAX_NR_CPUS); in svg_build_topology_map()
760 t.sib_core_nr = env->nr_sibling_cores; in svg_build_topology_map()
761 t.sib_thr_nr = env->nr_sibling_threads; in svg_build_topology_map()
762 t.sib_core = calloc(env->nr_sibling_cores, sizeof(cpumask_t)); in svg_build_topology_map()
763 t.sib_thr = calloc(env->nr_sibling_threads, sizeof(cpumask_t)); in svg_build_topology_map()
765 sib_core = env->sibling_cores; in svg_build_topology_map()
766 sib_thr = env->sibling_threads; in svg_build_topology_map()
773 for (i = 0; i < env in svg_build_topology_map()
[all...]
H A Dsample-raw.c6 #include "env.h"
16 const char *arch_pf = perf_env__arch(evlist->env); in evlist__init_trace_event_sample_raw()
17 const char *cpuid = perf_env__cpuid(evlist->env); in evlist__init_trace_event_sample_raw()
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/stack/
H A Dstack_lineargradient_test.cpp20 static napi_value TestStackLinearGradient001(napi_env env, napi_callback_info info) in TestStackLinearGradient001() argument
54 static napi_value TestStackLinearGradient002(napi_env env, napi_callback_info info) in TestStackLinearGradient002() argument
88 static napi_value TestStackLinearGradient003(napi_env env, napi_callback_info info) in TestStackLinearGradient003() argument
122 static napi_value TestStackLinearGradient004(napi_env env, napi_callback_info info) in TestStackLinearGradient004() argument
156 static napi_value TestStackLinearGradient005(napi_env env, napi_callback_info info) in TestStackLinearGradient005() argument
190 static napi_value TestStackLinearGradient006(napi_env env, napi_callback_info info) in TestStackLinearGradient006() argument
224 static napi_value TestStackLinearGradient007(napi_env env, napi_callback_info info) in TestStackLinearGradient007() argument
258 static napi_value TestStackLinearGradient008(napi_env env, napi_callback_info info) in TestStackLinearGradient008() argument
292 static napi_value TestStackLinearGradient009(napi_env env, napi_callback_info info) in TestStackLinearGradient009() argument
326 static napi_value TestStackLinearGradient010(napi_env env, napi_callback_inf argument
[all...]
/test/xts/acts/multimedia/media/media_js_standard/screenCapture_ndk_test/entry/src/main/cpp/
H A DnativeAVScreenCapturendk.cpp96 static napi_value NormalAVScreenCaptureTest(napi_env env, napi_callback_info info) in NormalAVScreenCaptureTest() argument
132 napi_create_int32(env, result, &res); in NormalAVScreenCaptureTest()
137 static napi_value NormalAVScreenRecordTest(napi_env env, napi_callback_info info) in NormalAVScreenRecordTest() argument
161 napi_create_int32(env, result, &res); in NormalAVScreenRecordTest()
195 static napi_value NormalAVScreenCaptureSurfaceTest(napi_env env, napi_callback_info info) in NormalAVScreenCaptureSurfaceTest() argument
281 napi_create_int32(env, result, &res); in NormalAVScreenCaptureSurfaceTest()
461 static napi_value OriginAVScreenCaptureTest(napi_env env, napi_callback_info info) in OriginAVScreenCaptureTest() argument
490 napi_create_int32(env, result, &res); in OriginAVScreenCaptureTest()
495 static napi_value Init(napi_env env, napi_value exports) in Init() argument
507 napi_define_properties(env, export in Init()
[all...]
/third_party/libfuse/lib/
H A Dmount.c337 char env[10]; in setup_auto_unmount() local
357 snprintf(env, sizeof(env), "%i", fds[0]); in setup_auto_unmount()
358 setenv(FUSE_COMMFD_ENV, env, 1); in setup_auto_unmount()
398 char env[10]; in fuse_mount_fusermount() local
421 snprintf(env, sizeof(env), "%i", fds[0]); in fuse_mount_fusermount()
422 setenv(FUSE_COMMFD_ENV, env, 1); in fuse_mount_fusermount()
/third_party/python/Modules/
H A Dmain.c396 const wchar_t *env = _wgetenv(L"PYTHONSTARTUP"); in pymain_run_startup() local
397 if (env == NULL || env[0] == L'\0') { in pymain_run_startup()
400 startup = PyUnicode_FromWideChar(env, wcslen(env)); in pymain_run_startup()
405 const char *env = _Py_GetEnv(config->use_environment, "PYTHONSTARTUP"); in pymain_run_startup() local
406 if (env == NULL) { in pymain_run_startup()
409 startup = PyUnicode_DecodeFSDefault(env); in pymain_run_startup()
/test/testfwk/arkxtest/uitest/napi/
H A Dui_event_observer_napi.h26 void PreprocessCallOnce(napi_env env, ApiCallInfo &call, napi_value jsThis, napi_value* argv, ApiCallErr &err);
27 void HandleEventCallback(napi_env env, const ApiCallInfo &in, ApiReplyInfo &out);
/third_party/node/src/
H A Ddiagnosticfilename-inl.h12 Environment* env, in DiagnosticFilename()
15 filename_(MakeFilename(env->thread_id(), prefix, ext)) { in DiagnosticFilename()
11 DiagnosticFilename( Environment* env, const char* prefix, const char* ext) DiagnosticFilename() argument
H A Dnode_process-inl.h14 inline v8::Maybe<bool> ProcessEmitWarning(Environment* env, in ProcessEmitWarning() argument
19 return ProcessEmitWarningGeneric(env, warning.c_str()); in ProcessEmitWarning()
/third_party/node/test/parallel/
H A Dtest-cluster-disconnect-unshared-tcp.js24 process.env.NODE_CLUSTER_SCHED_POLICY = 'none';
40 } else if (process.env.BOUND === 'y') {
H A Dtest-worker-nearheaplimit-deadlock.js11 if (!process.env.HAS_STARTED_WORKER) {
12 process.env.HAS_STARTED_WORKER = 1;
/third_party/node/test/common/
H A Dinternet.js51 if (process.env[envName]) {
52 addresses[key] = process.env[envName];
/third_party/node/test/fixtures/workload/
H A Dallocation-sigint.js4 const total = parseInt(process.env.TEST_ALLOCATION) || 100;
8 string += util.inspect(process.env);
/third_party/rust/crates/log/
H A Dbuild.rs4 use std::env;
45 env::var("TARGET").ok() in rustc_target()
/third_party/rust/crates/linux-raw-sys/.github/actions/install-rust/
H A Dmain.js2 const toolchain = process.env.INPUT_TOOLCHAIN;
6 fs.appendFileSync(process.env['GITHUB_ENV'], `${name}=${val}\n`)

Completed in 17 milliseconds

1...<<81828384858687888990>>...186