Searched defs:our_env (Results 1 - 3 of 3) sorted by relevance
/systemd/src/notify/ |
H A D | notify.c | 137 char* our_env[4]; local 152 our_env[i++] = (char*) "READY=1"; 161 our_env[i++] = status; 170 our_env[i++] = cpid; 173 our_env[i++] = NULL; 175 final_env = strv_env_merge(2, our_env, argv + optind);
|
/systemd/src/core/ |
H A D | execute.c | 1255 _cleanup_strv_free_ char **our_env = NULL; local 1262 our_env = new0(char*, 11); 1263 if (!our_env) 1271 our_env[n_env++] = x; 1275 our_env[n_env++] = x; 1284 our_env[n_env++] = x; 1290 our_env[n_env++] = x; 1294 our_env[n_env++] = x; 1301 our_env[n_env++] = x; 1308 our_env[n_en 1451 _cleanup_strv_free_ char **our_env = NULL, **pass_env = NULL, **pam_env = NULL, **final_env = NULL, **final_argv = NULL; local [all...] |
H A D | service.c | 1159 _cleanup_strv_free_ char **argv = NULL, **final_env = NULL, **our_env = NULL, **fd_names = NULL; local 1212 our_env = new0(char*, 6); 1213 if (!our_env) 1217 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0) 1221 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0) 1225 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid()) < 0) 1248 our_env[n_env++] = t; 1256 our_env[n_env++] = t; 1260 final_env = strv_env_merge(2, UNIT(s)->manager->environment, our_env, NULL);
|
Completed in 39 milliseconds