HomeSort by: relevance | last modified time | path
    Searched refs:getenv (Results 1 - 25 of 1365) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/flex/dist/examples/manual/
myname.lex 9 %NAME { printf("%s",getenv("LOGNAME")); }
10 %HOST { printf("%s",getenv("HOST")); }
11 %HOSTTYPE { printf("%s",getenv("HOSTTYPE"));}
12 %HOME { printf("%s",getenv("HOME")); }
  /src/sys/arch/mipsco/stand/common/
common.h 35 char *getenv(const char *);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
args-env.c 24 const char *value = getenv ("DEI");
25 const char *no_value = getenv ("NOSUCHVARIABLE");
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
args-env.c 24 const char *value = getenv ("DEI");
25 const char *no_value = getenv ("NOSUCHVARIABLE");
  /src/external/bsd/kyua-testers/dist/
env_test.c 40 ATF_REQUIRE(strcmp(getenv("PATH"), "new value") != 0);
42 ATF_REQUIRE(strcmp(getenv("PATH"), "new value") == 0);
49 ATF_REQUIRE(getenv("PATH") != NULL);
51 ATF_REQUIRE(getenv("PATH") == NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/
wrapper.c 29 d = getenv ("TEST");
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/
wrapper.c 29 d = getenv ("TEST");
  /src/external/ibm-public/postfix/dist/src/util/
safe_getenv.c 7 /* guarded getenv()
42 return (unsafe() == 0 ? getenv(name) : 0);
  /src/external/lgpl3/mpfr/dist/src/
logging.c 55 var = getenv ("MPFR_LOG_LEVEL");
59 var = getenv ("MPFR_LOG_PREC");
64 if (getenv ("MPFR_LOG_INPUT") != NULL)
66 if (getenv ("MPFR_LOG_OUTPUT") != NULL)
68 if (getenv ("MPFR_LOG_TIME") != NULL)
70 if (getenv ("MPFR_LOG_INTERNAL") != NULL)
72 if (getenv ("MPFR_LOG_MSG") != NULL)
74 if (getenv ("MPFR_LOG_ZIV") != NULL)
76 if (getenv ("MPFR_LOG_STAT") != NULL)
78 if (getenv ("MPFR_LOG_ALL") != NULL
    [all...]
  /src/external/gpl2/diffutils/dist/lib/
posixver.c 31 #if !HAVE_DECL_GETENV && !defined getenv
32 char *getenv ();
49 char const *s = getenv ("_POSIX2_VERSION");
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LinkAllAsmWriterComponents.h 26 // to know that getenv() never returns -1, this will do the job.
27 if (std::getenv("bar") != (char*) -1)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
MCJIT.h 28 // to know that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
OrcMCJITReplacement.h 28 // that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
  /src/external/gpl2/groff/dist/src/libs/libgroff/
device.cpp 35 char *tem = getenv("GROFF_TYPESETTER");
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
set-cwd.c 26 const char *home = getenv ("HOME");
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
set-cwd.c 26 const char *home = getenv ("HOME");
  /src/external/bsd/kyua-cli/dist/utils/
env_test.cpp 67 if (utils::getenv("PATH")) {
71 ATF_REQUIRE_EQ(utils::getenv("PATH").get(), (*iter).second);
76 ATF_TEST_CASE_WITHOUT_HEAD(getenv); variable
77 ATF_TEST_CASE_BODY(getenv)
79 const optional< std::string > path = utils::getenv("PATH");
83 ATF_REQUIRE(!utils::getenv("__UNDEFINED_VARIABLE__"));
101 ATF_REQUIRE(utils::getenv("PATH"));
102 const std::string oldval = utils::getenv("PATH").get();
104 ATF_REQUIRE(utils::getenv("PATH").get() != oldval);
105 ATF_REQUIRE_EQ("foo-bar", utils::getenv("PATH").get())
    [all...]
  /src/sys/arch/pmax/stand/common/
common.h 43 char *getenv(const char *);
  /src/external/gpl3/gcc/dist/libgomp/
secure_getenv.h 27 /* Secure getenv() which returns NULL if running as SUID/SGID. */
52 return getenv (name);
57 #define secure_getenv getenv
  /src/external/gpl3/gcc.old/dist/libgomp/
secure_getenv.h 27 /* Secure getenv() which returns NULL if running as SUID/SGID. */
52 return getenv (name);
57 #define secure_getenv getenv
  /src/external/mpl/bind/dist/bin/tests/system/isctest/hypothesis/
settings.py 18 settings.load_profile(os.getenv("HYPOTHESIS_PROFILE", "default"))
  /src/tests/lib/libc/stdlib/
t_getenv.c 71 ATF_CHECK_STREQ(getenv("crap0"), "0");
72 ATF_CHECK(getenv("crap1") == NULL);
73 ATF_CHECK(getenv("crap2") == NULL);
80 "Test setenv(3), getenv(3)");
86 ATF_CHECK_STREQ(getenv("EVIL"), "very=bad");
87 ATF_CHECK(getenv("EVIL=very") == NULL);
95 "Test putenv(3), getenv(3), unsetenv(3)");
105 ATF_CHECK_STREQ(getenv("crap"), "true");
107 ATF_CHECK_STREQ(getenv("clap"), "true");
108 ATF_CHECK(getenv("crap") == NULL)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
mark.py 37 if os.getenv("FEATURE_DNSRPS") != "1":
53 return pytest.mark.skipif(os.getenv(key) != "1", reason=f"{name} is not supported")
57 os.getenv("FEATURE_DNSTAP") != "1", reason="DNSTAP support disabled in the build"
62 os.getenv("FEATURE_FIPS_MODE") == "1", reason="FIPS support enabled in the build"
66 os.getenv("FEATURE_LIBXML2") != "1", reason="libxml2 support disabled in the build"
70 os.getenv("FEATURE_LMDB") != "1", reason="LMDB support disabled in the build"
74 os.getenv("FEATURE_JSON_C") != "1", reason="json-c support disabled in the build"
84 os.getenv("SOFTHSM2_CONF")
85 and os.getenv("SOFTHSM2_MODULE")
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
get_default_username.c 50 user = getenv ("USER");
52 user = getenv ("LOGNAME");
54 user = getenv ("USERNAME");
  /src/external/gpl2/gettext/dist/djgpp/
getpwnam.c 29 rv.pw_dir = getenv("HOME");
32 rv.pw_shell = getenv("SHELL");
34 rv.pw_shell = getenv("COMSPEC");

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>