fsa_timer_t       549 crmd/control.c     transition_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       550 crmd/control.c     integration_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       551 crmd/control.c     finalization_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       552 crmd/control.c     election_trigger = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       553 crmd/control.c     shutdown_escalation_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       554 crmd/control.c     wait_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t       555 crmd/control.c     recheck_timer = calloc(1, sizeof(fsa_timer_t));
fsa_timer_t        53 crmd/crmd_fsa.h typedef struct fsa_timer_s fsa_timer_t;
fsa_timer_t       101 crmd/crmd_fsa.h extern fsa_timer_t *election_trigger;   /*  */
fsa_timer_t       102 crmd/crmd_fsa.h extern fsa_timer_t *election_timeout;   /*  */
fsa_timer_t       103 crmd/crmd_fsa.h extern fsa_timer_t *shutdown_escalation_timer;  /*  */
fsa_timer_t       104 crmd/crmd_fsa.h extern fsa_timer_t *transition_timer;
fsa_timer_t       105 crmd/crmd_fsa.h extern fsa_timer_t *integration_timer;
fsa_timer_t       106 crmd/crmd_fsa.h extern fsa_timer_t *finalization_timer;
fsa_timer_t       107 crmd/crmd_fsa.h extern fsa_timer_t *wait_timer;
fsa_timer_t       108 crmd/crmd_fsa.h extern fsa_timer_t *recheck_timer;
fsa_timer_t        74 crmd/crmd_utils.h gboolean crm_timer_stop(fsa_timer_t * timer);
fsa_timer_t        75 crmd/crmd_utils.h gboolean crm_timer_start(fsa_timer_t * timer);
fsa_timer_t        77 crmd/crmd_utils.h gboolean is_timer_started(fsa_timer_t * timer);
fsa_timer_t       103 crmd/crmd_utils.h const char *get_timer_desc(fsa_timer_t * timer);
fsa_timer_t        56 crmd/fsa.c     fsa_timer_t *wait_timer = NULL;        /* How long to wait before retrying to connect to the cib/lrmd/ccm */
fsa_timer_t        57 crmd/fsa.c     fsa_timer_t *recheck_timer = NULL;     /* Periodically re-run the PE to account for time based rules/preferences */
fsa_timer_t        58 crmd/fsa.c     fsa_timer_t *election_trigger = NULL;  /* How long to wait at startup, or after an election, for the DC to make contact */
fsa_timer_t        59 crmd/fsa.c     fsa_timer_t *transition_timer = NULL;  /* How long to delay the start of a new transition with the expectation something else might happen too */
fsa_timer_t        60 crmd/fsa.c     fsa_timer_t *integration_timer = NULL;
fsa_timer_t        61 crmd/fsa.c     fsa_timer_t *finalization_timer = NULL;
fsa_timer_t        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 */
fsa_timer_t        76 crmd/utils.c   get_timer_desc(fsa_timer_t * timer)
fsa_timer_t       106 crmd/utils.c       fsa_timer_t *timer = (fsa_timer_t *) data;
fsa_timer_t       162 crmd/utils.c   is_timer_started(fsa_timer_t * timer)
fsa_timer_t       175 crmd/utils.c   crm_timer_start(fsa_timer_t * timer)
fsa_timer_t       200 crmd/utils.c   crm_timer_stop(fsa_timer_t * timer)