Searched defs:glob_envp (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/svc/startd/
H A Denv.c47 static char **glob_envp; /* Array of environment strings */ variable
68 glob_envp = startd_alloc(sizeof (*glob_envp) * glob_env_n);
70 glob_envp[0] = startd_alloc((unsigned)(strlen(DEF_PATH)+2));
71 (void) strcpy(glob_envp[0], DEF_PATH);
77 glob_envp[1] = NULL;
145 glob_envp[i] = startd_alloc((unsigned)(length + 1));
146 (void) strcpy(glob_envp[i], tokp);
154 newp = startd_alloc(sizeof (*glob_envp) *
156 (void) memcpy(newp, glob_envp,
[all...]
/illumos-gate/usr/src/cmd/init/
H A Dinit.c525 static char *glob_envp[MAXENVENT]; /* Array of environment strings */ variable
720 /* Load glob_envp from ENVFILE. */
969 (void) execle(SU, SU, "-", (char *)0, glob_envp);
1432 glob_envp);
1934 glob_envp[0] = malloc((unsigned)(strlen(DEF_PATH)+2));
1935 (void) strcpy(glob_envp[0], DEF_PATH);
1939 glob_envp[1] =
1941 (void) strcpy(glob_envp[1], "_DVFS_RECONFIG=YES");
1944 glob_envp[1] =
1946 (void) strcpy(glob_envp[
[all...]

Completed in 49 milliseconds