Searched refs:getenv (Results 1 - 25 of 753) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLinkAllAsmWriterComponents.h26 // to know that getenv() never returns -1, this will do the job.
27 if (std::getenv("bar") != (char*) -1)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DMCJIT.h28 // to know that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
H A DOrcMCJITReplacement.h28 // that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
/freebsd-13-stable/contrib/apr-util/test/
H A Dnw_misc.c11 if (getenv("_IN_NETWARE_BASH_") == NULL) {
/freebsd-13-stable/contrib/tcp_wrappers/
H A Dsetenv.c3 * is implemented in terms of portable primitives only: getenv(), putenv()
25 char *getenv();
28 if (clobber == 0 && getenv(name) != 0)
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_getenv.c74 ATF_CHECK_STREQ(getenv("crap0"), "0");
75 ATF_CHECK(getenv("crap1") == NULL);
76 ATF_CHECK(getenv("crap2") == NULL);
83 "Test setenv(3), getenv(3)");
89 ATF_CHECK_STREQ(getenv("EVIL"), "very=bad");
90 ATF_CHECK(getenv("EVIL=very") == NULL);
98 "Test putenv(3), getenv(3), unsetenv(3)");
108 ATF_CHECK_STREQ(getenv("crap"), "true");
110 ATF_CHECK_STREQ(getenv("clap"), "true");
111 ATF_CHECK(getenv("cra
[all...]
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dget_default_username.c48 user = getenv ("USER");
50 user = getenv ("LOGNAME");
52 user = getenv ("USERNAME");
/freebsd-13-stable/crypto/openssl/crypto/
H A Dgetenv.c29 return getenv(name);
/freebsd-13-stable/lib/libutil/
H A Dstub.c45 if (getenv("CRYPT_DEBUG") != NULL)
H A Dlogin_crypt.c44 if (getenv("CRYPT_DEBUG") != NULL)
/freebsd-13-stable/tools/regression/environ/
H A Dretention.c57 if (getenv(envName) != NULL)
59 printf("ok %d - getenv(\"%s\")\n", ++testNdx, envName);
63 ((env1 = getenv(envName)) == NULL) ||
70 if ((unsetenv(envName) == -1) || ((env2 = getenv(envName)) != NULL))
76 ((env3 = getenv(envName)) == NULL) ||
84 ((env4 = getenv(envName)) == NULL) ||
92 ((env5 = getenv(envName)) == NULL) ||
/freebsd-13-stable/contrib/kyua/utils/
H A Denv_test.cpp70 if (utils::getenv("PATH")) {
74 ATF_REQUIRE_EQ(utils::getenv("PATH").get(), (*iter).second);
79 ATF_TEST_CASE_WITHOUT_HEAD(getenv); variable
80 ATF_TEST_CASE_BODY(getenv)
82 const optional< std::string > path = utils::getenv("PATH");
86 ATF_REQUIRE(!utils::getenv("__UNDEFINED_VARIABLE__"));
131 ATF_REQUIRE(utils::getenv("PATH"));
132 const std::string oldval = utils::getenv("PATH").get();
134 ATF_REQUIRE(utils::getenv("PATH").get() != oldval);
135 ATF_REQUIRE_EQ("foo-bar", utils::getenv("PAT
[all...]
H A Denv.hpp49 optional< std::string > getenv(const std::string&);
/freebsd-13-stable/usr.bin/mail/
H A Dv7.local.c59 char *tmp = getenv("MAIL");
90 if ((np = getenv("USER")) != NULL)
92 if ((np = getenv("LOGNAME")) != NULL)
H A Dtemp.c56 if ((tmpdir = getenv("TMPDIR")) == NULL || *tmpdir == '\0')
82 if ((cp = getenv("HOME")) == NULL || *cp == '\0' ||
/freebsd-13-stable/contrib/kyua/integration/helpers/
H A Dbad_test_program.cpp40 const char* cookie = std::getenv("CREATE_COOKIE");
H A Dconfig.cpp37 const char* output = ::getenv("CONFIG_VAR_FILE");
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/
H A DLinkAllIR.h40 // to know that getenv() never returns -1, this will do the job.
41 if (std::getenv("bar") != (char*) -1)
/freebsd-13-stable/contrib/netbsd-tests/libexec/ld.elf_so/helper_ifunc_dso/
H A Dh_helper_ifunc.c48 const char *e = getenv("USE_IFUNC2");
/freebsd-13-stable/lib/libc/gen/
H A Dgetosreldate.c50 if ((temp = getenv("OSVERSION"))) {
/freebsd-13-stable/contrib/ldns/compat/
H A Dtimegm.c18 tz = getenv("TZ");
/freebsd-13-stable/contrib/diff/lib/
H A Dposixver.c48 char const *s = getenv ("_POSIX2_VERSION");
/freebsd-13-stable/contrib/elftoolchain/libelftc/
H A Delftc_timestamp.c41 if ((env = getenv("SOURCE_DATE_EPOCH")) != NULL) {
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dhome_terminfo.c57 if ((home = getenv("HOME")) != 0) {
/freebsd-13-stable/stand/common/
H A Dinterp.c72 if (getenv("prompt") == NULL)
74 if (getenv("interpret") == NULL)
130 if ((cp = getenv("prompt")) == NULL)
139 ev = getenv(p + 2);

Completed in 162 milliseconds

1234567891011>>