Searched refs:num_env (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Denv.c42 int num_env; variable
47 env = realloc(env, (num_env + 1) * sizeof(*env));
50 env[num_env++] = str;
61 for(i = 0; i < num_env; i++)
H A Dlogin_locl.h151 extern int num_env;
/macosx-10.10/OpenSSH-189/openssh/
H A Dsession.h58 u_int num_env; member in struct:Session
H A Dauth-pam.c298 u_int i, num_env; local
309 num_env = buffer_get_int(b);
310 if (num_env > 1024)
312 __func__, num_env);
313 sshpam_env = xcalloc(num_env + 1, sizeof(*sshpam_env));
314 debug3("PAM: num env strings %d", num_env);
315 for(i = 0; i < num_env; i++)
318 sshpam_env[num_env] = NULL;
321 num_env = buffer_get_int(b);
322 debug("PAM: num PAM env strings %d", num_env);
[all...]
H A Dsession.c1164 for (i = 0; i < s->num_env; i++)
2213 if (s->num_env > 128) {
2220 debug2("Setting env %d: %s=%s", s->num_env, name, val);
2221 s->env = xrealloc(s->env, s->num_env + 1,
2223 s->env[s->num_env].name = name;
2224 s->env[s->num_env].val = val;
2225 s->num_env++;
2509 for (i = 0; i < s->num_env; i++) {
/macosx-10.10/zsh-61/zsh/Src/
H A Dparams.c4349 int num_env;
4354 if (findenv(str, &num_env)) {
4355 environ[num_env] = str;
4358 num_env = arrlen(environ);
4359 environ = (char **) zrealloc(environ, (sizeof(char *)) * (num_env + 2));
4362 ep = environ + num_env;

Completed in 108 milliseconds