/src/lib/libc/stdlib/ |
getenv.c | 50 __weak_alias(getenv_r, _getenv_r) 55 * XXX: we cannot use getenv_r to implement this, because getenv() 81 getenv_r(const char *name, char *buf, size_t len) function in typeref:typename:int
|
/src/lib/librumpuser/ |
rumpuser_daemonize.c | 62 if (getenv_r("RUMP_STDOUT", path, sizeof(path)) == 0) { 68 if (getenv_r("RUMP_STDERR", path, sizeof(path)) == 0) {
|
rumpuser.c | 194 if (getenv_r("RUMP_NCPU", buf, blen) == -1) { 214 if (getenv_r(name, buf, blen) == -1)
|
configure.ac | 30 getenv_r posix_memalign memalign aligned_alloc \
|
rumpuser_bio.c | 155 if (getenv_r("RUMP_THREADS", buf, sizeof(buf)) == 0)
|
rumpuser_port.h | 159 getenv_r(const char *name, char *buf, size_t buflen) function in typeref:typename:int
|
rumpfiber.c | 529 if (getenv_r(name, buf, blen) == -1)
|
/src/tests/lib/libc/stdlib/ |
t_getenv_thread.c | 65 if (getenv_r(name, value, sizeof(value)) == -1) { 144 atf_tc_set_md_var(tc, "descr", "Test getenv_r(3) with threads");
|
/src/include/ |
stdlib.h | 315 int getenv_r(const char *, char *, size_t);
|
/src/lib/libperfuse/ |
perfuse.c | 91 if (getenv_r("PERFUSE_OPTIONS", opts, sizeof(opts)) != -1) { 156 if (getenv_r(name, valstr, sizeof(valstr)) == -1)
|
/src/lib/librumphijack/ |
hijack.c | 1003 if (getenv_r("RUMPHIJACK", buf, sizeof(buf)) == -1) { 1009 if (getenv_r("RUMPHIJACK_RETRYCONNECT", buf, sizeof(buf)) != -1) { 1030 if (getenv_r("RUMPHIJACK__DUP2INFO", buf, sizeof(buf)) == 0) { 1038 if (getenv_r("RUMPHIJACK__PWDINRUMP", buf, sizeof(buf)) == 0) {
|
/src/lib/libc/include/ |
namespace.h | 54 #define getenv_r _getenv_r macro
|
/src/common/lib/libc/misc/ |
ubsan.c | 1284 if (getenv_r("LIBC_UBSAN", buf, sizeof(buf)) != -1) {
|