/src/lib/libc/compat/stdlib/ |
compat_putenv.c | 49 __weak_alias(putenv,_putenv) 52 __warn_references(putenv, 53 "warning: reference to compatibility putenv();" 57 * putenv(name) -- 61 putenv(char *name)
|
/src/lib/libc/compat/include/ |
stdlib.h | 41 int putenv(char *);
|
/src/tools/compat/ |
setenv.c | 32 /* Emulate setenv() with getenv()/malloc()/putenv(). */ 48 putenv(buf);
|
/src/tests/lib/libc/stdlib/ |
t_getenv.c | 95 "Test putenv(3), getenv(3), unsetenv(3)"); 104 ATF_CHECK(putenv(string) != -1); 113 ATF_CHECK_ERRNO(EINVAL, putenv(NULL) == -1); 114 ATF_CHECK_ERRNO(EINVAL, putenv(__UNCONST("val")) == -1); 115 ATF_CHECK_ERRNO(EINVAL, putenv(__UNCONST("=val")) == -1); 165 "Test mixing setenv(3), unsetenv(3) and putenv(3)"); 172 (void)strcpy(string, "mixedcrap=putenv"); 176 ATF_CHECK(putenv(string) != -1); 177 ATF_CHECK_STREQ(getenv("mixedcrap"), "putenv"); 181 ATF_CHECK(putenv(string) != -1) [all...] |
t_getenv_thread.c | 83 THREADED_VAR_NAME "=putenv %ld", i, lrand48()); 95 ATF_CHECK(putenv(vars[i]) != -1); 169 atf_tc_set_md_var(tc, "descr", "Test concurrent access by putenv(3)");
|
/src/lib/libc/stdlib/ |
putenv.c | 1 /* $NetBSD: putenv.c,v 1.21 2015/01/20 18:31:25 christos Exp $ */ 35 static char sccsid[] = "@(#)putenv.c 8.2 (Berkeley) 3/27/94"; 37 __RCSID("$NetBSD: putenv.c,v 1.21 2015/01/20 18:31:25 christos Exp $"); 52 putenv(char *str) function in typeref:typename:int
|
Makefile.inc | 13 nrand48.c putenv.c qabs.c qdiv.c qsort.c posix_openpt.c pty.c \ 80 MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3
|
/src/usr.bin/env/ |
env.c | 95 if (putenv(*argv) == -1) 96 err(125, "putenv '%s'", *argv);
|
/src/tests/lib/libutil/ |
t_parsedate.c | 249 putenv(__UNCONST("TZ=EST")); 254 putenv(__UNCONST("TZ=Asia/Tokyo")); 263 putenv(__UNCONST("TZ=Europe/London")); 490 putenv(__UNCONST("TZ=Europe/Berlin")); 493 putenv(__UNCONST("TZ=America/New_York"));
|
/src/sys/arch/ia64/stand/common/ |
environment.c | 166 putenv(const char *string) function in typeref:typename:int
|
bootstrap.h | 379 extern int putenv(const char *string);
|
commands.c | 303 if ((err = putenv(argv[1])) != 0) {
|
/src/sys/arch/arc/arc/ |
arcbios.h | 315 arc_status_t (*putenv)( /* SetEnvironmentVariable 32 */ member in struct:arc_calls
|
/src/include/ |
stdlib.h | 166 int putenv(char *) __RENAME(__putenv50);
|
/src/distrib/utils/ssh/ |
ssh.c | 400 putenv(cur_path);
|
/src/usr.bin/login/ |
login_pam.c | 605 if (putenv(*envitem) == -1)
|
/src/usr.bin/su/ |
su_pam.c | 485 if (putenv(*envitem) == -1)
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_interceptors.cc | 652 INTERCEPTOR(int, putenv, char *string) { 654 int res = REAL(putenv)(string); 1658 INTERCEPT_FUNCTION(putenv);
|
/src/lib/libc/include/ |
namespace.h | 583 #define putenv _putenv macro
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 1458 TEST(MemorySanitizer, putenv) { 1460 putenv(s);
|
/src/sys/external/isc/libsodium/dist/build-aux/ |
ltmain.sh | 5563 int putenv (char *); 5575 # define putenv _putenv 5582 # define putenv _putenv 6247 if (putenv (str) != EXIT_SUCCESS)
|
/src/sys/external/isc/libsodium/dist/ |
ltmain.sh | 4186 int putenv (char *); 4198 # define putenv _putenv 4209 # define putenv _putenv 4869 if (putenv (str) != EXIT_SUCCESS)
|