Searched refs:environ (Results 1 - 25 of 262) sorted by relevance

1234567891011

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-InterfaceBuilderKit/PyObjCTest/
H A D__init__.py4 if 'DYLD_FRAMEWORK_PATH' not in os.environ or \
5 '/Developer/Library/PrivateFrameworks/' not in os.environ['DYLD_FRAMEWORK_PATH']:
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-InterfaceBuilderKit/PyObjCTest/
H A D__init__.py4 if 'DYLD_FRAMEWORK_PATH' not in os.environ or \
5 'Library/PrivateFrameworks/' not in os.environ['DYLD_FRAMEWORK_PATH']:
/macosx-10.10.1/ruby-106/ruby/missing/
H A Dcrt_externs.h5 #undef environ macro
6 #define environ (*_NSGetEnviron()) macro
H A Dsetproctitle.c54 # undef environ macro
55 # define environ (*_NSGetEnviron()) macro
85 extern char **environ;
88 char **envp = environ;
103 if ((environ = calloc(i + 1, sizeof(*environ))) == NULL) {
104 environ = envp; /* put it back */
128 environ[i] = ruby_strdup(envp[i]);
129 environ[i] = NULL;
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dputenv.c39 extern char **environ;
61 if(environ == NULL) {
62 environ = malloc(sizeof(char*));
63 if(environ == NULL)
65 environ[0] = NULL;
68 for(i = 0; environ[i] != NULL; i++)
69 if(strncmp(string, environ[i], len) == 0) {
70 environ[i] = string;
73 environ = realloc(environ, sizeo
[all...]
H A Dunsetenv.c42 extern char **environ;
55 if (name == 0 || environ == 0)
62 for (p = environ; *p != 0; p++)
/macosx-10.10.1/ksh-23/ksh/src/lib/libdll/
H A Ddllopen.c50 if (!environ)
53 environ = nenv;
56 oenv = environ[0];
70 environ[0] = path + strlen(path) + 1;
73 if (environ == nenv)
74 environ = 0;
76 environ[0] = oenv;
/macosx-10.10.1/screen-22/screen/
H A Dputenv.c76 extern char **environ; /* the global which is your env. */
97 free(environ[i]);
100 for (; environ[i]; i++)
101 environ[i] = environ[i+1];
122 for (i = 0; environ[i]; i++);
131 environ[i + 1] = 0; /* new end of env. */
135 p = realloc(environ[i], strlen(string) + 1);
140 environ[i] = p;
153 for (i = 0; environ[
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dsetenv.c41 extern char **environ;
42 static char **lastenv; /* last value of environ */
58 extern char **environ;
63 if (name == NULL || environ == NULL)
65 for (p = environ + *offset; (cp = *p) != NULL; ++p) {
70 *offset = p - environ;
98 environ[offset++] = str;
101 for (P = &environ[offset];; ++P)
109 for (P = environ; *P != NULL; P++)
111 cnt = P - environ;
[all...]
/macosx-10.10.1/remote_cmds-47/telnetd.tproj/
H A Dtelnetd.h48 extern char **environ;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_dyld.py14 self.orig_environ = os.environ
15 os.environ = os.environ.copy()
18 os.environ = self.orig_environ
21 if 'DYLD_IMAGE_SUFFIX' in os.environ:
22 del os.environ['DYLD_IMAGE_SUFFIX']
34 os.environ['DYLD_IMAGE_SUFFIX'] = '_DEBUG'
65 if k in os.environ:
66 del os.environ[k]
82 os.environ['DYLD_IMAGE_SUFFI
[all...]
/macosx-10.10.1/system_cmds-643.1.1/login.tproj/
H A Dlogin.h36 extern char **environ;
/macosx-10.10.1/emacs-93/emacs/src/
H A Decrt0.c24 because it makes `environ' an initialized variable.
76 char **environ; variable
139 environ = envp;
161 environ = argv + argc + 1;
163 if (environ == *argv)
164 environ--;
165 exit (main (argc, argv, environ));
273 environ = argv + argc + 1;
275 if ((char *)environ == xargv)
276 environ
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/support/
H A Dprintenv.c33 extern char **environ;
49 for (envp = environ; *envp; envp++)
56 for (envp = environ; *envp; envp++)
/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb14 @environ.each do |key, val| ENV.delete(key) end
20 @environ = {
30 ENV.update(@environ)
41 @environ = {
48 ENV.update(@environ)
58 @environ = {
68 ENV.update(@environ)
79 @environ = {
86 ENV.update(@environ)
95 @environ
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/port/
H A Daststatic.c37 ap->_dll_environ = &environ;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dsetenviron.c31 * environ==0 is ok
40 #define INCREMENT 16 /* environ increment */
46 static char** envv; /* recorded environ */
52 register char** v = environ;
63 environ = next = p;
71 n = v - environ + INCREMENT;
72 v = environ;
85 v = environ;
91 envv = environ = p;
114 envv = environ
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Denviron.c18 extern char **environ;
21 static int allocated = 0; /* environ is, or is not, allocated */
41 for (envp = environ; envp && *envp; envp++)
136 for (envp = environ; envp && *envp; envp++)
138 n_used = envp - environ;
143 (char **) realloc((char *) environ, l_need) :
144 (char **) cmalloc(l_need, (char *) environ, l_used);
149 environ = envp;
150 environ[n_used++] = nameval; /* add new entry */
151 environ[n_use
[all...]
H A Dclean_env.c50 extern char **environ;
71 * (Ultrix!), environ can be a null pointer.
73 if (environ)
74 environ[0] = 0;
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dgetenv.c53 __findenv(name, offset, environ)
56 char **environ;
62 if (name == NULL || environ == NULL)
67 for (p = environ; (cp = *p) != NULL; ++p) {
72 *offset = p - environ;
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/crt-libSystem/
H A Dmain.c44 extern char** environ;
63 if ( _NSGetEnviron() != &environ ) {
64 FAIL("crt-libSystem _NSGetEnviron() != &environv (%p!=%p) for %s", _NSGetEnviron(), &environ, argv[0]);
88 if ( sVars->environPtr != &environ ) {
89 FAIL("crt-libSystem sVars->environPtr != &environ (%p!=%p) for %s", sVars->environPtr, &environ, argv[0]);
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dputenv.c46 extern char **environ;
60 for (ep = environ; *ep != NULL; ++ep)
74 for (ep = environ; *ep != NULL; ++ep)
87 (void) memcpy((PTR) new_environ, (PTR) environ, size * sizeof(char *));
93 environ = new_environ;
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-PreferencePanes/Examples/EnvironmentPrefs/
H A DShellEnv.py38 # 'environ', # The actual environment, as a NSMutableDictionary
52 self.environ = None
63 self.environ = NSMutableDictionary.dictionaryWithContentsOfFile_(
65 if self.environ is None:
66 self.environ = NSMutableDictionary.dictionary()
67 self.keys = list(self.environ.keys())
112 self.environ = None
128 if not self.environ.writeToFile_atomically_(fname, True):
141 del self.environ[envname]
153 while self.environ
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-PreferencePanes/Examples/EnvironmentPrefs/
H A DShellEnv.py38 # 'environ', # The actual environment, as a NSMutableDictionary
52 self.environ = None
63 self.environ = NSMutableDictionary.dictionaryWithContentsOfFile_(
65 if self.environ is None:
66 self.environ = NSMutableDictionary.dictionary()
67 self.keys = list(self.environ.keys())
112 self.environ = None
128 if not self.environ.writeToFile_atomically_(fname, True):
141 del self.environ[envname]
153 while self.environ
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-PreferencePanes-2.5.1/Examples/EnvironmentPrefs/
H A DShellEnv.py38 # 'environ', # The actual environment, as a NSMutableDictionary
52 self.environ = None
63 self.environ = NSMutableDictionary.dictionaryWithContentsOfFile_(
65 if self.environ is None:
66 self.environ = NSMutableDictionary.dictionary()
67 self.keys = list(self.environ.keys())
112 self.environ = None
128 if not self.environ.writeToFile_atomically_(fname, True):
141 del self.environ[envname]
153 while self.environ
[all...]

Completed in 159 milliseconds

1234567891011