| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_free_envlist.c | 52 char **env; local 57 for (env = envlist; *env != NULL; ++env) 58 FREE(*env);
|
| pam_setenv.c | 68 char *env; local 84 if (asprintf(&env, "%s=%s", name, value) < 0) 86 r = pam_putenv(pamh, env); 87 FREE(env);
|
| pam_putenv.c | 64 char **env; local 83 FREE(pamh->env[i]); 84 pamh->env[i] = q; 91 env = realloc(pamh->env, sizeof(*env) * env_size); 92 if (env == NULL) 94 pamh->env = env; 99 if ((pamh->env[pamh->env_count] = strdup(namevalue)) == NULL [all...] |
| /src/games/trek/ |
| main.c | 154 jmp_buf env; variable 201 if (setjmp(env)) {
|
| /src/sys/external/bsd/gnu-efi/dist/apps/ |
| setjmp.c | 14 jmp_buf env; local 18 rc = setjmp(env); 23 longjmp(env, 0); 32 longjmp(env, 3);
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| env.hpp | 36 namespace env { namespace in namespace:atf 81 } // namespace env
|
| /src/external/bsd/atf/dist/tools/ |
| env.hpp | 36 namespace env { namespace in namespace:tools 81 } // namespace env
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/ |
| compile-setjmp-mod.c | 28 jmp_buf env; local 30 switch (setjmp (env)) 36 longjmp (env, 2);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/ |
| compile-setjmp-mod.c | 28 jmp_buf env; local 30 switch (setjmp (env)) 36 longjmp (env, 2);
|
| /src/sys/arch/powerpc/booke/ |
| kcopy.c | 60 struct faultbuf env; local 62 const int rv = setfault(&env);
|
| /src/lib/libm/src/ |
| s_lrint.c | 55 fenv_t env; local 58 feholdexcept(&env); 62 feupdateenv(&env);
|
| /src/sys/arch/algor/algor/ |
| pmon.c | 84 char **env = environ; local 89 while (*env != NULL) { 91 printf("pmon_getenv: %s\n", *env); 93 if (strncasecmp(var, *env, i) == 0 && 94 (*env)[i] == '=') { 95 rv = &(*env)[i + 1]; 98 env++;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| longjmp.c | 20 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);
|
| premature-dummy-frame-removal.c | 21 jmp_buf env; variable 26 longjmp (env, 1); 32 if (setjmp (env) == 0)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| longjmp.c | 20 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);
|
| premature-dummy-frame-removal.c | 21 jmp_buf env; variable 26 longjmp (env, 1); 32 if (setjmp (env) == 0)
|
| /src/sys/arch/powerpc/ibm4xx/ |
| copyinstr.c | 52 struct faultbuf env; local 60 if ((rv = setfault(&env))) {
|
| copyoutstr.c | 52 struct faultbuf env; local 60 if ((rv = setfault(&env))) {
|
| /src/tests/kernel/ |
| t_open_pr_57260.c | 45 static jmp_buf env; variable 56 longjmp(env, 1); 83 if (setjmp(env))
|
| /src/usr.bin/make/unit-tests/ |
| make-exported.mk | 7 -env= make-exported-value-env 11 # Before 2020-10-03, the following line took the code path of .export-env, 13 # export the variable named "-env", but that is rejected because the 15 .MAKE.EXPORTED= -env 25 @env | sort | ${EGREP} '^UT_|make-exported-value' || true
|
| /src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| test_expr.c | 50 hx509_env env = NULL, env2 = NULL; local 62 hx509_env_add(context, &env, "variable", "foo"); 64 hx509_env_add_binding(context, &env, "context", env2); 72 val = _hx509_expr_eval(context, env, expr); 86 hx509_env_free(&env);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/async/arch/ |
| async_posix.h | 33 jmp_buf env; member in struct:async_fibre_st 41 if (!r || !_setjmp(o->env)) { 43 _longjmp(n->env, 1);
|
| /src/external/bsd/kyua-cli/dist/engine/ |
| action_test.cpp | 55 std::map< std::string, std::string > env; local 56 env["foo"] = "bar"; 57 return engine::context(fs::path(cwd), env); 94 ATF_REQUIRE_EQ("action{context=context{cwd='/foo/bar', env=[foo='bar']}}",
|
| context_test.cpp | 37 #include "utils/env.hpp" 47 std::map< std::string, std::string > env; local 48 env["foo"] = "first"; 49 env["bar"] = "second"; 50 const engine::context context(fs::path("/foo/bar"), env); 52 ATF_REQUIRE(env == context.env()); 61 ATF_REQUIRE(utils::getallenv() == context.env()); 68 std::map< std::string, std::string > env; local 69 env["foo"] = "first" 87 const std::map< std::string, std::string > env; local 99 std::map< std::string, std::string > env; local [all...] |
| /src/external/bsd/openldap/dist/libraries/liblmdb/ |
| mdb_copy.c | 35 MDB_env *env; local 67 rc = mdb_env_create(&env); 69 rc = mdb_env_open(env, argv[1], flags, 0600); 74 rc = mdb_env_copyfd2(env, MDB_STDOUT, cpflags); 76 rc = mdb_env_copy2(env, argv[2], cpflags); 81 mdb_env_close(env);
|