| /src/external/gpl3/binutils/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/external/gpl3/binutils.old/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/external/gpl3/gcc/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/external/gpl3/gcc.old/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/external/gpl3/gdb/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/external/gpl3/gdb.old/dist/include/ |
| environ.h | 1 /* Declare the environ system variable. 20 /* On OSX, the environ variable can be used directly in the code of an 23 function _NSGetEnviron can be called to get the address of environ. */ 28 # define environ (*_NSGetEnviron ()) macro 30 # ifndef environ 31 extern char **environ;
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| putenv.c | 41 extern char **environ; 63 if(environ == NULL) { 64 environ = malloc(sizeof(char*)); 65 if(environ == NULL) 67 environ[0] = NULL; 70 for(i = 0; environ[i] != NULL; i++) 71 if(strncmp(string, environ[i], len) == 0) { 72 environ[i] = string; 75 environ = realloc(environ, sizeof(char*) * (i + 2)) [all...] |
| unsetenv.c | 44 extern char **environ; 57 if (name == 0 || environ == 0) 64 for (p = environ; *p != 0; p++)
|
| /src/external/gpl3/gdb/dist/gdb/system-gdbinit/ |
| wrs-linux.py | 20 if "ENV_PREFIX" in os.environ: 21 gdb.execute("set sysroot %s" % os.environ["ENV_PREFIX"])
|
| /src/external/gpl3/gdb.old/dist/gdb/system-gdbinit/ |
| wrs-linux.py | 20 if "ENV_PREFIX" in os.environ: 21 gdb.execute("set sysroot %s" % os.environ["ENV_PREFIX"])
|
| /src/sys/arch/algor/algor/ |
| pmon.c | 41 static char *environ[64]; variable 43 static char **environ; variable 57 envp = environ; 60 KASSERT(envp - environ < __arraycount(environ)); 64 KASSERT(envp - environ < __arraycount(environ)); 67 if (environ == NULL) 68 environ = envp; 71 printf("pmon_init: environ = %p (%p)\n", environ, *environ) [all...] |
| /src/lib/libc/stdlib/ |
| unsetenv.c | 80 __freeenvvar(environ[r_offset]); 87 while (environ[++r_offset] != NULL) { 88 if (strncmp(environ[r_offset], name, l_name) != 0 || 89 environ[r_offset][l_name] != '=') { 91 environ[w_offset++] = environ[r_offset]; 94 __freeenvvar(environ[r_offset]); 100 environ[w_offset++] = NULL;
|
| putenv.c | 71 if (environ[offset] != NULL) 72 __freeenvvar(environ[offset]); 73 environ[offset] = str;
|
| /src/external/bsd/nvi/dist/clib/ |
| env.c | 59 extern char **environ; 64 if (name == NULL || environ == NULL) 69 for (p = environ; (c = *p) != NULL; ++p) 71 *offset = p - environ; 92 extern char **environ; 111 for (p = environ, cnt = 0; *p; ++p, ++cnt); 113 environ = (char **)realloc((char *)environ, 115 if (!environ) 123 memmove(p, environ, cnt * sizeof(char *)) [all...] |
| /src/external/bsd/libbind/dist/bsd/ |
| setenv.c | 53 extern char **environ; 63 extern char **environ; 82 for (p = environ, cnt = 0; *p; ++p, ++cnt); 84 environ = (char **)realloc((char *)environ, 86 if (!environ) 94 memcpy(p, environ, cnt * sizeof(char *)); 95 environ = p; 97 environ[cnt + 1] = NULL; 101 if (!(environ[offset] = /*%< name + `=' + value * [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/statschannel/ |
| conftest.py | 19 return int(os.environ["EXTRAPORT1"])
|
| /src/external/bsd/tmux/dist/ |
| environ.c | 32 RB_HEAD(environ, environ_entry); 34 RB_GENERATE_STATIC(environ, environ_entry, entry, environ_cmp); 43 struct environ * 46 struct environ *env; 56 environ_free(struct environ *env) 60 RB_FOREACH_SAFE(envent, environ, env, envent1) { 61 RB_REMOVE(environ, env, envent); 70 environ_first(struct environ *env) 72 return (RB_MIN(environ, env)); 78 return (RB_NEXT(environ, env, envent)) [all...] |
| /src/external/gpl2/gettext/dist/djgpp/ |
| unsetenv.c | 17 extern char **environ; 23 if (environ == 0)
|
| /src/lib/csu/common/ |
| csu-common.h | 37 extern char **environ __common;
|
| /src/lib/libc/gen/ |
| execv.c | 53 return execve(name, argv, environ);
|
| /src/libexec/telnetd/ |
| telnetd.h | 45 extern char **environ;
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-env/ |
| print_environment.py | 6 sorted_environment = sorted(os.environ.items())
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-not/ |
| print_environment.py | 6 print(name, '=', os.environ.get(name, '[undefined]'))
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| environ.c | 1 /* $NetBSD: environ.c,v 1.1.1.1 2009/06/23 10:08:59 tron Exp $ */ 20 extern char **environ; 23 static int allocated = 0; /* environ is, or is not, allocated */ 43 for (envp = environ; envp && *envp; envp++) 138 for (envp = environ; envp && *envp; envp++) 140 n_used = envp - environ; 145 (char **) realloc((char *) environ, l_need) : 146 (char **) cmalloc(l_need, (char *) environ, l_used); 151 environ = envp; 152 environ[n_used++] = nameval; /* add new entry * [all...] |
| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| putenv.c | 48 extern char **environ; 62 for (ep = environ; *ep != NULL; ++ep) 76 for (ep = environ; *ep != NULL; ++ep) 89 (void) memcpy((PTR) new_environ, (PTR) environ, size * sizeof(char *)); 95 environ = new_environ;
|