env               775 daemons/controld/controld_utils.c         const char *env = getenv("PCMK_cib_timeout");
env               777 daemons/controld/controld_utils.c         if (env) {
env               778 daemons/controld/controld_utils.c             env_timeout = crm_parse_int(env, "0");
env               782 daemons/controld/controld_utils.c                   env_timeout, (env? env : "none"));
env                36 lib/common/ipc_common.c         const char *env = getenv("PCMK_ipc_buffer");
env                38 lib/common/ipc_common.c         if (env) {
env                39 lib/common/ipc_common.c             int env_max = crm_parse_int(env, "0");
env               620 lib/common/mainloop.c     const char *env = getenv("PCMK_ipc_type");
env               622 lib/common/mainloop.c     if (env && strcmp("shared-mem", env) == 0) {
env               624 lib/common/mainloop.c     } else if (env && strcmp("socket", env) == 0) {
env               626 lib/common/mainloop.c     } else if (env && strcmp("posix", env) == 0) {
env               628 lib/common/mainloop.c     } else if (env && strcmp("sysv", env) == 0) {
env              1267 lib/common/remote.c         const char *env = getenv("PCMK_remote_port");
env              1269 lib/common/remote.c         if (env) {
env              1271 lib/common/remote.c             port = strtol(env, NULL, 10);
env              1274 lib/common/remote.c                          env, DEFAULT_REMOTE_PORT);
env               291 tools/crm_shadow.c                     const char *env = getenv("CIB_shadow");
env               292 tools/crm_shadow.c                     if(env) {
env               293 tools/crm_shadow.c                         shadow = strdup(env);
env               244 tools/stonith_admin.c     const char *env = getenv(key);
env               247 tools/stonith_admin.c     if (env == NULL) {
env               251 tools/stonith_admin.c         crm_info("Got: '%s'='%s'", optarg, env);
env               252 tools/stonith_admin.c         options.params = stonith_key_value_add(options.params, optarg, env);