shutdown_escalation_timer  386 crmd/control.c     crm_timer_stop(shutdown_escalation_timer);
shutdown_escalation_timer  394 crmd/control.c     free(shutdown_escalation_timer); shutdown_escalation_timer = NULL;
shutdown_escalation_timer  553 crmd/control.c     shutdown_escalation_timer = calloc(1, sizeof(fsa_timer_t));
shutdown_escalation_timer  611 crmd/control.c     if (shutdown_escalation_timer != NULL) {
shutdown_escalation_timer  612 crmd/control.c         shutdown_escalation_timer->source_id = 0;
shutdown_escalation_timer  613 crmd/control.c         shutdown_escalation_timer->period_ms = -1;
shutdown_escalation_timer  614 crmd/control.c         shutdown_escalation_timer->fsa_input = I_STOP;
shutdown_escalation_timer  615 crmd/control.c         shutdown_escalation_timer->callback = crm_timer_popped;
shutdown_escalation_timer  616 crmd/control.c         shutdown_escalation_timer->repeat = FALSE;
shutdown_escalation_timer 1067 crmd/control.c     shutdown_escalation_timer->period_ms = crm_get_msec(value);
shutdown_escalation_timer 1069 crmd/control.c     crm_debug("Shutdown escalation occurs after: %dms", shutdown_escalation_timer->period_ms);
shutdown_escalation_timer 1151 crmd/control.c             if (shutdown_escalation_timer->period_ms < 1) {
shutdown_escalation_timer 1156 crmd/control.c                 shutdown_escalation_timer->period_ms = msec;
shutdown_escalation_timer 1161 crmd/control.c                        " limit=%dms", shutdown_escalation_timer->period_ms);
shutdown_escalation_timer 1162 crmd/control.c             crm_timer_start(shutdown_escalation_timer);
shutdown_escalation_timer  103 crmd/crmd_fsa.h extern fsa_timer_t *shutdown_escalation_timer;  /*  */
shutdown_escalation_timer   62 crmd/fsa.c     fsa_timer_t *shutdown_escalation_timer = NULL; /* How long to wait for the DC to stop all resources and give us the all-clear to shut down */
shutdown_escalation_timer   81 crmd/utils.c       } else if (timer == shutdown_escalation_timer) {