Searched refs:env (Results 1 - 25 of 1181) sorted by relevance

1234567891011>>

/netbsd-current/lib/libc/gen/
H A DLint___sigsetjmp14.c12 __sigsetjmp14(env, savemask)
13 sigjmp_buf env;
21 __siglongjmp14(env, val)
22 sigjmp_buf env;
H A DLint__setjmp.c12 _setjmp(env)
13 jmp_buf env;
20 _longjmp(env, val)
21 jmp_buf env;
H A DLint___setjmp14.c12 __setjmp14(jmp_buf env) argument
19 __longjmp14(jmp_buf env, int val) argument
/netbsd-current/usr.bin/make/unit-tests/
H A Dunexport-env.exp1 UT_TEST=unexport-env
H A Dvarname-dot-make-level.exp1 level 1: variable 0, env 1
2 level 2: variable 1, env 2
3 level 3: variable 2, env 3
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/
H A Denviron-selftests.c41 gdb_environ env; local
45 SELF_CHECK (env.envp ()[0] == NULL);
46 SELF_CHECK (env.user_set_env ().size () == 0);
47 SELF_CHECK (env.user_unset_env ().size () == 0);
50 SELF_CHECK (env.get ("PWD") == NULL);
59 gdb_environ env = gdb_environ::from_host_environ (); local
62 SELF_CHECK (env.user_set_env ().size () == 0);
63 SELF_CHECK (env.user_unset_env ().size () == 0);
67 SELF_CHECK (strcmp (env.get (gdb_selftest_env_var), "1") == 0);
78 gdb_environ env local
96 gdb_environ env; local
124 gdb_environ env; local
147 gdb_environ env; local
164 gdb_environ env; local
190 gdb_environ env; local
216 gdb_environ env; local
228 env = std::move (env); local
243 gdb_environ env = gdb_environ::from_host_environ (); local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/
H A Denviron-selftests.c41 gdb_environ env; local
45 SELF_CHECK (env.envp ()[0] == NULL);
46 SELF_CHECK (env.user_set_env ().size () == 0);
47 SELF_CHECK (env.user_unset_env ().size () == 0);
50 SELF_CHECK (env.get ("PWD") == NULL);
59 gdb_environ env = gdb_environ::from_host_environ (); local
62 SELF_CHECK (env.user_set_env ().size () == 0);
63 SELF_CHECK (env.user_unset_env ().size () == 0);
67 SELF_CHECK (strcmp (env.get (gdb_selftest_env_var), "1") == 0);
78 gdb_environ env local
96 gdb_environ env; local
124 gdb_environ env; local
147 gdb_environ env; local
164 gdb_environ env; local
190 gdb_environ env; local
216 gdb_environ env; local
228 env = std::move (env); local
243 gdb_environ env = gdb_environ::from_host_environ (); local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dlongjmp.c20 jmp_buf env; variable
35 if (setjmp (env) == 0)
37 call_longjmp (&env);
49 if (setjmp (env) == 0) /* patt1 */
52 longjmp (env, 1);
63 if (setjmp (env) == 0) /* patt2 */
65 call_longjmp (&env);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dlongjmp.c20 jmp_buf env; variable
35 if (setjmp (env) == 0)
37 call_longjmp (&env);
49 if (setjmp (env) != 0) /* patt1 */
56 longjmp (env, 1);
63 if (setjmp (env) == 0) /* patt2 */
65 call_longjmp (&env);
H A Dpremature-dummy-frame-removal.c21 jmp_buf env; variable
26 longjmp (env, 1);
32 if (setjmp (env) == 0)
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_free_envlist.c52 char **env; local
57 for (env = envlist; *env != NULL; ++env)
58 FREE(*env);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Denv.c1 /* $NetBSD: env.c,v 1.2 2017/01/28 21:31:48 christos Exp $ */
48 * @param env environment to add the environment variable too.
58 hx509_env_add(hx509_context context, hx509_env *env, argument
84 if (*env) {
85 hx509_env e = *env;
90 *env = n;
99 * @param env environment to add the environment variable too.
109 hx509_env_add_binding(hx509_context context, hx509_env *env, argument
130 if (*env) {
131 hx509_env e = *env;
156 hx509_env_lfind(hx509_context context, hx509_env env, const char *key, size_t len) argument
181 hx509_env_find(hx509_context context, hx509_env env, const char *key) argument
204 hx509_env_find_binding(hx509_context context, hx509_env env, const char *key) argument
242 hx509_env_free(hx509_env *env) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/contrib/reghunt/bin/
H A Dgcc-cleanup6 if [ -f gcc-svn-env ]; then
7 . ./gcc-svn-env
8 elif [ -f ../gcc-svn-env ]; then
9 . ../gcc-svn-env
10 elif [ -f ${HOME}/etc/gcc-svn-env ]; then
11 . ${HOME}/etc/gcc-svn-env
13 echo "$0: could not find gcc-svn-env file"
/netbsd-current/external/gpl3/gcc.old/dist/contrib/reghunt/bin/
H A Dgcc-cleanup6 if [ -f gcc-svn-env ]; then
7 . ./gcc-svn-env
8 elif [ -f ../gcc-svn-env ]; then
9 . ../gcc-svn-env
10 elif [ -f ${HOME}/etc/gcc-svn-env ]; then
11 . ${HOME}/etc/gcc-svn-env
13 echo "$0: could not find gcc-svn-env file"
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
H A Dcompile-setjmp-mod.c28 jmp_buf env; local
30 switch (setjmp (env))
36 longjmp (env, 2);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
H A Dcompile-setjmp-mod.c28 jmp_buf env; local
30 switch (setjmp (env))
36 longjmp (env, 2);
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Denv.c112 char *env, *end; local
116 env = getenv ("OMP_SCHEDULE");
117 if (env == NULL)
120 while (isspace ((unsigned char) *env))
121 ++env;
122 if (strncasecmp (env, "monotonic", 9) == 0)
125 env += 9;
127 else if (strncasecmp (env, "nonmonotonic", 12) == 0)
130 env += 12;
134 while (isspace ((unsigned char) *env))
221 char *env, *end; local
302 char *env, *end; local
386 const char *env; local
429 char *env; local
543 char *env = *envp, *start; local
694 char *env = getenv (name), *end; local
870 char *env, *end; local
931 char *env, *end; local
1005 const char *env; local
1040 const char *env; local
1075 char *env, *end, *start; local
1174 const char *env; local
1213 const char *env = getenv ("ACC_DEVICE_TYPE"); local
1425 const char *env; local
1545 const char *env = getenv ("OMP_AFFINITY_FORMAT"); local
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/tests/bin/
H A DMakefile.am3 noinst_SCRIPTS = setup-env
22 setup-env: setup-env.in Makefile
23 $(do_subst) < $(srcdir)/setup-env.in > setup-env.tmp
24 chmod +x setup-env.tmp
25 mv setup-env.tmp setup-env
27 EXTRA_DIST = setup-env.in
29 CLEANFILES = setup-env setu
[all...]
/netbsd-current/sys/external/bsd/drm2/amdgpu/
H A Damdgpu2netbsd25 } | env \
26 env CONFIG_ACPI=y \
27 env CONFIG_DRM_AMDGPU=y \
28 env CONFIG_DRM_AMDGPU_CIK=y \
29 env CONFIG_DRM_AMDGPU_SI=y \
30 env CONFIG_DRM_AMD_ACP=y \
31 env CONFIG_DRM_AMD_DC=y \
32 env CONFIG_DRM_AMD_DC_DCN=y \
33 env CONFIG_DRM_AMD_DC_HDCP=y \
34 env srctre
[all...]
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dassigndefined.c13 void assigndefined(env)
14 char *env;
18 if (env == NULL)
21 for (s = strtok(env, ";"); s != NULL; s = strtok(NULL, ";")) {
/netbsd-current/usr.bin/env/
H A DMakefile4 PROG= env
/netbsd-current/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/
H A Dlookup.exp31 if {[info exists env(LC_ALL)]} {
32 set old_lc_all $env(LC_ALL)
34 set env(LC_ALL) "C"
45 set env(LC_ALL) $old_lc_all
47 unset env(LC_ALL)
/netbsd-current/external/gpl3/gdb/dist/libctf/testsuite/libctf-regression/
H A Dregression.exp31 if {[info exists env(LC_ALL)]} {
32 set old_lc_all $env(LC_ALL)
34 set env(LC_ALL) "C"
45 set env(LC_ALL) $old_lc_all
47 unset env(LC_ALL)
/netbsd-current/external/gpl3/gdb/dist/libctf/testsuite/libctf-writable/
H A Dwritable.exp21 if {[info exists env(LC_ALL)]} {
22 set old_lc_all $env(LC_ALL)
24 set env(LC_ALL) "C"
35 set env(LC_ALL) $old_lc_all
37 unset env(LC_ALL)
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/
H A Denv.c105 char *env, *end; local
109 env = getenv ("OMP_SCHEDULE");
110 if (env == NULL)
113 while (isspace ((unsigned char) *env))
114 ++env;
115 if (strncasecmp (env, "monotonic", 9) == 0)
118 env += 9;
120 else if (strncasecmp (env, "nonmonotonic", 12) == 0)
123 env += 12;
127 while (isspace ((unsigned char) *env))
214 char *env, *end; local
295 char *env, *end; local
384 char *env; local
497 char *env = *envp, *start; local
626 char *env = getenv (name), *end; local
792 char *env, *end; local
853 char *env, *end; local
926 const char *env; local
958 const char *env; local
993 char *env, *end, *start; local
1090 const char *env = getenv ("ACC_DEVICE_TYPE"); local
1131 const char *env; local
1362 const char *env = getenv ("OMP_AFFINITY_FORMAT"); local
[all...]

Completed in 485 milliseconds

1234567891011>>